blob: c3c6320ec6a359996d235fdd8287dd0b00640871 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<!DOCTYPE actionsconfig>
<actions>
<action icon="form" type="tag" name="tag_form" text="Form" >
<tag useDialog="true" ><form></tag>
<xtag use="true" inLine="false" ></form></xtag>
</action>
<action icon="select" type="tag" name="tag_form_select" text="Select" >
<tag useDialog="true" ><select></tag>
<xtag use="true" inLine="false" ></select></xtag>
</action>
<action icon="check" type="tag" name="tag_form_check" text="Check Button" >
<tag useDialog="true" ><input type="checkbox"></tag>
<xtag use="false" inLine="true" />
</action>
<action icon="radio" type="tag" name="tag_form_radio" text="Radio Button" >
<tag useDialog="true" ><input type="radio"></tag>
<xtag use="false" inLine="true" />
</action>
<action icon="textarea" type="tag" name="tag_form_textarea" text="Text Area" >
<tag useDialog="false" ><textarea></tag>
<xtag use="true" inLine="true" ></textarea></xtag>
</action>
<action icon="linepas" type="tag" name="tag_form_passedit" text="Input Password" >
<tag useDialog="true" ><input type="password"></tag>
<xtag use="false" inLine="true" />
</action>
<action icon="lineedit" type="tag" name="tag_form_lineedit" text="Input Text" >
<tag useDialog="true" ><input type="text"></tag>
<xtag use="false" inLine="true" />
</action>
<action icon="submit" type="tag" name="tag_form_submit" text="Submit" >
<tag useDialog="true" ><input type="submit"></tag>
<xtag use="false" inLine="true" />
</action>
<action icon="reset" type="tag" name="tag_form_reset" text="Reset" >
<tag useDialog="true" ><input type="reset"></tag>
<xtag use="false" inLine="true" />
</action>
</actions>
|