comparison shared_view/includes/dojo/group.tt @ 11:573272ec604b

almost comlete doxygen library
author sergey
date Thu, 15 May 2014 18:24:02 +0400
parents
children
comparison
equal deleted inserted replaced
10:83ad674a8cdd 11:573272ec604b
1 [% META class='IMPL::Web::View::TTFormContainer' %]
2 [% BLOCK ITEM %]
3 <div id="$control.id" class="input-control">
4 <div class="control-label">
5 [% this.Include('ITEM_LABEL') %]
6 [% this.Include('ITEM_ERRORS') %]
7 </div>
8 <div class="control-content">
9 $control.Render
10 </div>
11 </div>
12 [% END %]
13 [% BLOCK ITEM_ERRORS %]
14 <span class="control-errors">[% control.errors.join(', ') %]</span>
15 [% END %]
16 [% BLOCK ITEM_LABEL %]
17 [% control.GetSchemaProp('display') %]
18 [% END %]
19 [% BLOCK ERRORS %]
20 <span class="control-errors">[% this.GetOwnErrors().join(', ') %]</span>
21 [% END %]
22 [% BLOCK LAYOUT %]
23 <div id="$this.id" class="group-control">
24 [% this.Include('ERRORS') %]
25 <div class="control-label">
26 [% this.GetSchemaProp('display') %]
27 </div>
28 <div class="control-content">
29 [% this.Include('CONTENT') %]
30 <br style="clear: both;" />
31 </div>
32 </div>
33 [% END %]
34 [% BLOCK CONTENT;
35 FOREACH ctl IN this.GetChildControls();
36 this.Include('ITEM', control = ctl);
37 END;
38 END %]
39 [% this.Include('LAYOUT') %]