Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/public_html/manager/templates/default/element/tv/renders/input/ |
<select id="tv{$tv->id}" name="tv{$tv->id}"> {foreach from=$opts item=item} <option value="{$item.value}" {if $item.selected} selected="selected"{/if}>{$item.text}</option> {/foreach} </select> <script type="text/javascript"> // <![CDATA[ {literal} Ext.onReady(function() { var fld = MODx.load({ {/literal} xtype: 'combo' ,transform: 'tv{$tv->id}' ,id: 'tv{$tv->id}' ,triggerAction: 'all' ,width: '99%' ,allowBlank: {if $params.allowBlank == 1 || $params.allowBlank == 'true'}true{else}false{/if} {if $params.title},title: '{$params.title}'{/if} {if $params.listWidth},listWidth: {$params.listWidth}{/if} ,maxHeight: {if $params.maxHeight}{$params.maxHeight}{else}300{/if} {if $params.typeAhead} ,typeAhead: true ,typeAheadDelay: {if $params.typeAheadDelay && $params.typeAheadDelay != ''}{$params.typeAheadDelay}{else}250{/if} {else} ,editable: false ,typeAhead: false {/if} {if $params.listEmptyText} ,listEmptyText: '{$params.listEmptyText}' {/if} ,forceSelection: {if $params.forceSelection && $params.forceSelection != 'false'}true{else}false{/if} ,msgTarget: 'under' {if $params.allowBlank == 1 || $params.allowBlank == 'true'}{else}{literal} ,validator: function(v) { if (Ext.isEmpty(v) || v == '' || v == '-') { return _('field_required'); } return true; } {/literal}{/if} {literal} ,listeners: { 'select': { fn:MODx.fireResourceFormChange, scope:this}} }); Ext.getCmp('modx-panel-resource').getForm().add(fld); }); {/literal} // ]]> </script>