| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <div id="tv-input-properties-form{$tv|default}"></div>
- {literal}
- <script type="text/javascript">
- // <![CDATA[
- var params = {
- {/literal}{foreach from=$params key=k item=v name='p'}
- '{$k}': '{$v|escape:"javascript"}'{if NOT $smarty.foreach.p.last},{/if}
- {/foreach}{literal}
- };
- var oc = {'change':{fn:function(){Ext.getCmp('modx-panel-tv').markDirty();},scope:this}};
- MODx.load({
- xtype: 'panel'
- ,layout: 'form'
- ,autoHeight: true
- ,labelAlign: 'top'
- ,cls: 'form-with-labels'
- ,border: false
- ,items: [{
- xtype: 'combo-boolean'
- ,fieldLabel: _('required')
- ,description: MODx.expandHelp ? '' : _('required_desc')
- ,name: 'inopt_allowBlank'
- ,hiddenName: 'inopt_allowBlank'
- ,id: 'inopt_allowBlank{/literal}{$tv|default}{literal}'
- ,width: 200
- ,value: (params['allowBlank']) ? !(params['allowBlank'] === 0 || params['allowBlank'] === 'false') : true
- ,listeners: oc
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'inopt_allowBlank{/literal}{$tv|default}{literal}'
- ,html: _('required_desc')
- ,cls: 'desc-under'
- },{
- xtype: 'numberfield'
- ,allowNegative: false
- ,allowDecimals: false
- ,fieldLabel: _('checkbox_columns')
- ,description: MODx.expandHelp ? '' : _('checkbox_columns_desc')
- ,name: 'inopt_columns'
- ,id: 'inopt_columns{/literal}{$tv|default}{literal}'
- ,value: params['columns'] || 1
- ,width: 300
- ,listeners: oc
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'inopt_columns{/literal}{$tv|default}{literal}'
- ,html: _('checkbox_columns_desc')
- ,cls: 'desc-under'
- }]
- ,renderTo: 'tv-input-properties-form{/literal}{$tv|default}{literal}'
- });
- // ]]>
- </script>
- {/literal}
|