我想要得到以下內容以單行顯示。我曾嘗試使用樣式浮動和顯示。如何讓ExtJS組合框與文本內聯顯示?
Show this input <input type="text" name="filterOp" id="filterOp"/> inline. <script type="text/javascript"> new Ext.form.ComboBox({ applyTo: 'filterOp', triggerAction: 'all', name: 'item', mode: 'local', lazyInit: true, displayField: 'name', valueField: 'id', forceSelection: true, typeAhead: true, inputType:'text', fieldLabel: 'Item selection', style: "display: inline-block", store: new Ext.data.JsonStore({ autoLoad: true, url: 'reporting/json_report_filter_operators.jsp', root: 'rows', fields:['id', 'name'] }) }) </script>
我想在瀏覽器中呈現時在同一行中看到「顯示此輸入」。 ComboxBox渲染時會生成一個div元素,它是一個塊元素,將它渲染爲一個新行。 – Artilheiro 2010-11-19 18:48:03