You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
748 B
22 lines
748 B
7 years ago
|
<div class="{{classes}}">
|
||
|
<div method="{{method}}" action="{{url}}" id="{{formid}}">
|
||
|
{{#params}}
|
||
|
<input type="hidden" name="{{name}}" value="{{value}}">
|
||
|
{{/params}}
|
||
|
<input type="button" class="btn btn-secondary selectortrigger"
|
||
|
id="{{id}}"
|
||
|
title={{#quote}}{{tooltip}}{{/quote}}
|
||
|
value={{#quote}}{{label}}{{/quote}}
|
||
|
{{#disabled}}disabled{{/disabled}}>
|
||
|
</div>
|
||
|
</div>
|
||
|
{{#hasactions}}
|
||
|
{{#js}}
|
||
|
require(['core/yui'], function(Y) {
|
||
|
{{#actions}}
|
||
|
Y.on('{{event}}', {{{jsfunction}}}, '#{{id}}', null{{#jsfunctionargs}}, {{{jsfunctionargs}}}{{/jsfunctionargs}});
|
||
|
{{/actions}}
|
||
|
});
|
||
|
{{/js}}
|
||
|
{{/hasactions}}
|