summaryrefslogtreecommitdiffstats
path: root/lib/htmlviewfunctions.lua
Commit message (Collapse)AuthorAgeFilesLines
* Modify htmlviewfunctions to output item class for static contentTed Trask2017-02-271-3/+15
| | | | Previously, class was not output unless item was in a form
* Add id to html formTed Trask2017-01-251-1/+1
|
* Remove trailing whitespaceTed Trask2016-08-041-3/+3
|
* Fix default display when default is falseTed Trask2016-02-031-1/+1
|
* Modify htmlviewfunctions to display text for cfe objects that do not have an ↵Ted Trask2015-11-121-1/+3
| | | | HTML type
* url encode clientdata in htmlviewfunctions.displaypaginationTed Trask2015-10-041-1/+1
|
* Display descr in htmlviewfunctions.displaycommandresultsTed Trask2015-10-031-0/+1
|
* Use cfe.print_errtxt in htmlviewfunctions.displaycommandresults and make ↵Ted Trask2015-06-051-2/+2
| | | | sure results are cfes
* htmlviewfunctions.lua fixes to properly display readonly checkbox and selectTed Trask2015-05-201-0/+11
|
* Modify htmlviewfunctions to add id to div at start of sectionTed Trask2015-05-141-1/+1
|
* Modify htmlviewfunctions displayitem to display key items as inputsTed Trask2014-10-271-3/+7
| | | | Had to add name and group to displayitem prototype
* Remove obsolete viewonly viewtype from htmlviewfunctionsTed Trask2014-10-271-6/+3
| | | | This changed the displayformitem prototype, but does not affect any code outside the module
* Modify htmlviewfunctions to display readonly select as text since select ↵Ted Trask2014-09-121-0/+2
| | | | does not support readonly option
* Cleanup of htmlviewfunctions to make quotes consistent and remove carriage ↵Ted Trask2014-04-251-20/+20
| | | | returns
* Modified htmlviewfunctions to add form cfe class to submit button(s)Ted Trask2014-04-071-1/+1
|
* Fix bug in htmlviewfunctions.displayitem where form headers were not incrementedTed Trask2014-03-311-1/+1
|
* Change htmlviewfunctions.displayform prototype to remove order and ↵Ted Trask2014-03-311-33/+17
| | | | | | finishingorder This breaks backward compatibility
* Change prototype of htmlviewfunctions.dislay item to make consistentTed Trask2014-03-311-2/+2
| | | | Note: this breaks backward compatibility
* Change htmlviewfunctions.displayheader to .displaysectionstart and added ↵Ted Trask2014-03-171-5/+15
| | | | .displaysectionend function
* Change htmlviewfunctions to make all labels use label tag and create ↵Ted Trask2014-03-081-37/+61
| | | | displayformstart/middle/end functions
* Fix more issues in htmlviewfunctions where page_info nil exceptionTed Trask2014-03-071-0/+2
|
* Fix issue in htmlviewfunctions where page_info nil exceptionTed Trask2014-03-061-1/+3
|
* Add support to htmlviewfunctions for header_level -1 to not display the item ↵Ted Trask2014-03-061-18/+34
| | | | wrapper
* Add incrementheader function to htmlviewfunctionsTed Trask2014-03-031-10/+10
|
* Refactor htmlviewfunctions to create displayheader and displayinfo functions ↵Ted Trask2014-03-031-27/+47
| | | | | | | and add features for link and header_level=0 A link cfe becomes a form that does not have name=submit, so it links to an action with param values, but does not submit it Setting header_level=0 prevents headers from being displayed
* Fix HTML multi select to use select instead of series of checkboxesTed Trask2014-03-031-2/+9
|
* Try using label tag for form inputsTed Trask2014-02-281-1/+2
|
* Fix htmlviewfunctions displaypagination when clientdata contains tablesTed Trask2014-02-051-3/+10
|
* Add carriage return to form output for readabilityTed Trask2014-02-031-3/+3
|
* Modify HTML to replace DL,DT,DD with divs. Also cleanup other HTML.Ted Trask2014-01-221-35/+33
|
* Remove all calls to 'module' in preparation for move to Lua 5.2Ted Trask2013-10-171-21/+23
| | | | | Use mymodule parameter for module definition. This was also helpfule in revealing places where the code relied on the global environment.
* Change use of require to work with Lua 5.2Ted Trask2013-10-091-1/+1
|
* Modified htmlviewfunctions to allow disabled options for multi-select boxesTed Trask2012-04-231-0/+1
|
* Changed forms to always use 'submit' as name of submit button, plus allow ↵Ted Trask2012-02-221-1/+10
| | | | multiple submit buttons
* Changed viewfunctions.lua to htmlviewfunctions.lua and made it an actual moduleTed Trask2012-02-021-0/+362
It should have been a module all along, but wasn't Unfortunately, this means changes to pretty much every view file