Commit b413b6dc authored by Ad Schellevis's avatar Ad Schellevis

(mvc templates) add some basic tag descriptions on default tr tags

parent 08567906
...@@ -24,6 +24,20 @@ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ...@@ -24,6 +24,20 @@ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. POSSIBILITY OF SUCH DAMAGE.
---------------------------------------------------------------------------------------------------------------
Handle input table row, usage the following parameters (as associative array):
id : unique id of the attribute
label : attribute label (visible text)
size : size (width in characters) attribute if applicable
help : help text
advanced : property "is advanced", only display in advanced mode
hint : input control hint
style : css class to add
maxheight : maximum heigt in rows if applicable
width : width in pixels if applicable
allownew : allow new items (for list) if applicable
#} #}
<tr for="{{ id }}" {% if advanced|default(false)=='true' %} data-advanced="true"{% endif %}> <tr for="{{ id }}" {% if advanced|default(false)=='true' %} data-advanced="true"{% endif %}>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment