- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 ExtJs 中创建一个表单,该表单具有两列行和其他三列行,我有这个:
但我希望字段:“Fecha Escritura”、“Acción”和“Fecha Escritura”位于同一行。
这是我的代码:
formBuscador = new Ext.FormPanel({
labelWidth : 120,
frame : true,
title : buscador,
bodyStyle : 'padding:5px 5px 0',
width : 1200,
renderTo : 'gridFormularioBusqueda',
items : [ {
//xtype: 'form',
layout : 'column',
labelAlign: 'left',
defaults: {
xtype: 'container',
layout: 'form',
columnWidth: 0.5,
labelWidth: 185
},
items: [
{items: [{
xtype : 'textfield',
fieldLabel : idEmpleado,
allowBlank : true,
name : 'idEmpleadoP',
id : 'idEmpleadoPB',
autoCreate: {tag: 'input', type: 'text', autocomplete: 'off',maxlength: '9'}
}]
},{items: [{
xtype : 'textfield',
fieldLabel : nif,
allowBlank : true,
name : 'nifP',
id : 'nifPB',
autoCreate: {tag: 'input', type: 'text', autocomplete: 'off',maxlength: '9'}
}]
},{items: [{
xtype : 'textfield',
fieldLabel : nombre,
allowBlank : false,
blankText : campoNoVacioNombre,
name : 'nombreP',
id : 'nombrePB',
autoCreate: {tag: 'input', type: 'text', autocomplete: 'off',maxlength: '100'}
}]
},{items: [{
xtype : 'textfield',
fieldLabel : apellidos,
allowBlank : false,
blankText : campoNoVacioApellido,
name : 'apellidosP',
id : 'apellidosPB',
autoCreate: {tag: 'input', type: 'text', autocomplete: 'off',maxlength: '100'}
}]
},{items: [{
xtype : 'textfield',
fieldLabel : notario,
allowBlank : false,
blankText : campoNoVacioNotario,
name : 'notarioP',
id : 'notarioPB',
autoCreate: {tag: 'input', type: 'text', autocomplete: 'off',maxlength: '75'}
}]
},{items: [{
xtype : 'numberfield',
fieldLabel : numeroProtocolo,
allowBlank : false,
blankText : campoNoVacioNumeroProtocolo,
name : 'numeroProtocoloP',
id : 'numeroProtocoloPB',
autoCreate: {tag: 'input', type: 'text', autocomplete: 'off',maxlength: '5'}
}]
},{items: [{
fieldLabel : incluidaDelegacion,
html: "<select id='incluidaDelegacionPB' name='incluidaDelegacionP' style='border-color:#b5b8c8;background-color:white;width:20%;height:95%;margin-bottom:9px;margin-top: 1px;' >" +
"<option id='incluidaDelegacionPBNo' value='false'>No</option>" +
"<option id='incluidaDelegacionPBSi' value='true'>Si</option>" +
"</select> "
}]
},{items: [{
fieldLabel : revocacionDelegacion,
html: "<select id='revocacionDelegacionBP' name='revocacionDelegacionB' style='border-color:#b5b8c8;background-color:white;width:20%;height:95%;margin-bottom:9px;margin-top: 6px;' >" +
"<option id='revocacionDelegacionPBNo' value='false'>No</option>" +
"<option id='revocacionDelegacionPBSi' value='true'>Si</option>" +
"</select> "
}]
},{items: [{
fieldLabel : revocado,
html: "<select id='revocadoPB' name='revocadoP' style='border-color:#b5b8c8;background-color:white;width:20%;height:95%;margin-bottom:10px;margin-top: 1px;' >" +
"<option id='revocadoPBNo' value='false'>No</option>" +
"<option id='revocadoPBSi' value='true'>Si</option>" +
"</select> "
}]
},{items: [{
fieldLabel : limiteCuantitativo,
html: "<select id='limiteCuantitativoBP' name='limiteCuantitativoP' style='border-color:#b5b8c8;background-color:white;width:20%;height:95%;margin-bottom:10px;margin-top: 1px;' >" +
"<option id='limiteCuantitativoPBNo' value='false'>No</option>" +
"<option id='limiteCuantitativoPBSi' value='true'>Si</option>" +
"</select> "
}]
},{items: [{
xtype : 'datefield',
fieldLabel : fechaEscritura,
allowBlank : false,
blankText : campoNoVacioFechaEscritura,
labelWidth: 100,
name : 'fechaEscrituraP',
id : 'fechaEscrituraPB',
editable : false,
autoCreate: {tag: 'input', type: 'text', autocomplete: 'off',maxlength: '10'}
}]
},{items: [{
fieldLabel : 'Acción',
html: "<select id='accionFechaEscrituraBP' name='accionFechaEscrituraBP' style='border-color:#b5b8c8;background-color:white;width:20%;height:95%;margin-bottom:10px;margin-top: 1px;' >" +
"<option id='accionFechaEscrituraBPAnterior' value='Anterior'>Anterior</option>" +
"<option id='accionFechaEscrituraBPPosterior' value='Posterior'>Posterior</option>" +
"<option id='accionFechaEscrituraBPEntre' value='Entre'>Entre</option>" +
"<option id='accionFechaEscrituraBPIgualA' value='IgualA'>Igual A</option>" +
"</select> "
}]
},{items: [{
xtype : 'datefield',
fieldLabel : fechaEscritura,
allowBlank : false,
blankText : campoNoVacioFechaEscritura,
name : 'fechaEscrituraPFin',
id : 'fechaEscrituraPBFin',
editable : false,
autoCreate: {tag: 'input', type: 'text', autocomplete: 'off',maxlength: '10'}
}]
}]
}]
});
最后三个是不起作用的,我一直在尝试一个新的专栏With,但那不起作用,有什么想法吗?
最佳答案
根据您对 column
的要求布局。我已经尝试在表单中创建多个列。
在此FIDDLE ,您可以检查它是否工作正常。希望这将指导您或帮助您实现您的要求。
Ext.onReady(function() {
var form = new Ext.FormPanel({
renderTo: Ext.getBody(),
frame: true,
title: 'Multi Column, Nested Layouts and Anchoring',
bodyStyle: 'padding:10px;',
items: [{
layout: 'column',
defaults: {
columnWidth: .5,
layout: 'form'
},
items: [{
defaults: {
xtype: 'textfield',
anchor: '95%',
},
items: [{
fieldLabel: 'A'
}, {
fieldLabel: 'B'
}, {
fieldLabel: 'C'
}, {
xtype: 'combo',
fieldLabel: 'Combo 1',
store: new Ext.data.ArrayStore({
fields: ['text', 'value'],
data: [{
abbr: 'yes',
state: 'NO'
}]
}),
displayField: 'text',
valueField: 'text',
typeAhead: true,
queryMode: 'local'
}, {
xtype: 'combo',
fieldLabel: 'Combo 2',
store: new Ext.data.ArrayStore({
fields: ['text', 'value'],
data: [{
abbr: 'yes',
state: 'NO'
}]
}),
displayField: 'text',
valueField: 'text',
typeAhead: true,
queryMode: 'local'
}, {
xtype: 'datefield',
fieldLabel: 'date 1'
}, {
xtype: 'datefield',
fieldLabel: 'date 2'
}]
}, {
defaults: {
xtype: 'textfield',
anchor: '95%'
},
items: [{
fieldLabel: 'D'
}, {
fieldLabel: 'E'
}, {
fieldLabel: 'F'
}, {
xtype: 'combo',
fieldLabel: 'Combo 3',
store: new Ext.data.ArrayStore({
fields: ['text', 'value'],
data: [{
abbr: 'yes',
state: 'NO'
}]
}),
displayField: 'text',
valueField: 'text',
typeAhead: true,
queryMode: 'local'
}, {
xtype: 'combo',
fieldLabel: 'Combo 4',
store: new Ext.data.ArrayStore({
fields: ['text', 'value'],
data: [{
abbr: 'yes',
state: 'NO'
}]
}),
displayField: 'text',
valueField: 'text',
typeAhead: true,
queryMode: 'local'
}, {
xtype: 'combo',
fieldLabel: 'Combo 5',
store: new Ext.data.ArrayStore({
fields: ['text', 'value'],
data: [{
abbr: 'yes',
state: 'NO'
}]
}),
displayField: 'text',
valueField: 'text',
typeAhead: true,
queryMode: 'local'
}]
}]
}],
buttons: [{
text: 'Save'
}, {
text: 'Cancel'
}]
});
});
关于javascript - FormPanel ExtJs 3.2 中的多列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47636927/
我带着这么简单的问题来到这里,但找不到它......无论如何,你可以在下面看到代码。这是里面有项目的面板。我想要的是更改名称为“intIP”的文本字段的值,它位于面板内部,位于面板内部。我怎样才能做到
如何在 ExtJS 设计中显示面包屑功能。 我正在使用带边框布局的面板,我想在面板顶部设计面包屑功能 请寄给我一些 sample ..... 提前致谢 最佳答案 我想到了两个解决方案。 使用面板标题
你好 如何在 ExtJS 中设计嵌套网格 请提供一些示例(如何在 ExtJS GridPanel 中使用 RowExpander) 最佳答案 尝试这样的事情: //Create the Row Ex
我有类似的东西 Ext.define('HS.controller.Utility', { statics : { state : 'Oklahoma' } }); 现在我想
我有一列checkcolumn类型来启用切换 bool 值。我希望能够一次为该值切换所有行。理想情况下,我可以在checkcolumn header 中添加一个复选框,并监听更改。那可能吗? 我想指出
在我的 extjs 项目中,我有一些 panel我要展示的toolbar在 mouseEnter事件。这工作正常。但是当我用新的 html 更新面板时,mouseenter事件不起作用。 panel.
如何在 ExtJs Combo 中显示图标和显示字段。extjs 组合是否有任何扩展。请提供一些 sample 。 最佳答案 对于 ExtJS4,将带有 getInnerTpl 方法的 listCon
我有用于网格和柱状图的存储,但值是字符串形式的(服务器端格式化的数量,不能在客户端完成)。由于字符串格式的数量,网格没有被呈现。解决方案可能会使用网格和图表所需的数据类型制作单独的存储。但这是低效的方
我正在一个页面上有一个GridPanel的项目中工作。该面板可以显示任意数量的行,并且我设置了autoHeight属性,这将导致GridPanel扩展以适合行数。我现在想要一个水平滚动条,因为在某些分
我有一个网格,它允许用户通过编辑行来输入数字。我希望数字支持 4 位小数,但它只支持 2 位。我想出了如何显示 4 位小数,但它没有注册超过 2 位小数。 因此,如果用户输入 1000.1111,结果
我这里有以下网格: Ext.define('AM.view.user.List', { extend: 'Ext.grid.Panel', alias: 'widget.userlis
我正在将我的应用程序从ExtJs 3迁移到4版本。 我的formPanel上有几个组合框,以前我用过hiddenName 以及所有的stuff提交valueField而不是displayField。
我在一个面板中创建了多个项目。现在我想以“适合”布局显示此面板。我不想修复该面板的高度和宽度。我知道“适合”布局只允许显示一项。 这里可以使用“适合”布局吗?或者有什么替代方案可以实现这一目标吗? 谢
我需要将数据库值加载到组合框中。我不明白,为什么值没有加载到组合框中。通过 firebug,打印出 console.log 值。这是我的组合框代码, var groups = new Ext.data
这是将筛选器动态添加到gridpanel底部工具栏的正确语法吗? this.Grid.getBottomToolbar().plugins=[filters]; 当我这样做时没有错误。但是,它的行为并
我正在使用ExtJS v4.0。 在客户端和服务器端之间维护日期格式确实令人困惑。 用户需要自己的输入格式,但是服务器通常要求提交为一种标准格式。 它应该是ExtJS中的内置实现,但不是。 我已经阅读
我的问题对你来说很容易,但我负担不起..我从行中获取数据并显示在其他面板的字段中我的目标是编辑这些数据并在网格中显示编辑后的数据,请给我一些建议,我知道它需要 commit() 函数但是.. 我的代码
我是 ExtJS 的新手。我遵循了一个教程,目的是在网格上创建分页。代码很简单,我发现它很可疑......结果,分页工具栏在那里,但在第一次加载时仍然显示所有数据。这是我在 View 文件中的代码:
听说EXTJS是一个独立于浏览器的javascript库。 extjs 如何使自己独立于浏览器?当我打开库类时,我没有看到任何代码: 如果(IE)//这样做;else if (FF)//做其他事情;
我有一个类的实例(例如 Ext.data.Model)myRecord 并且需要调用它的静态方法之一(例如 getFields())。我该怎么做? 最佳答案 您还可以使用 self获取类的属性: my
我是一名优秀的程序员,十分优秀!