Ext.onReady(function() {
MODx.load({
xtype: 'combo'
,transform: 'block-1'
,id: 'block-1'
,triggerAction: 'all'
,editable: false
,forceSelection: false
,listeners: {'select': {fn:MODx.fireResourceFormChange, scope:this}}
});
});
Неправильно высчитывает ширину элемента, в результате получаю:
style="width: 15px;" и
style="width: 0".
Как отключить создание атрибута стилей с шириной?
<div class="x-form-field-wrap x-form-field-trigger-wrap" id="ext-gen555" style="width: 15px;">
<input type="hidden" name="block-1" id="ext-gen557" value="white">
<input type="text" size="24" autocomplete="off" id="ext-gen554" class="x-form-text x-form-field x-trigger-noedit" readonly="" style="width: 0">
<div class="x-form-trigger x-form-arrow-trigger" id="ext-gen556"></div>
</div>