Extjs表单应该看起来像一个表

时间:2014-04-16 19:40:28

标签: extjs

我想在extjs中创建一个表单,它可以有一个组合框,复选框等。但它应该看起来像是在网格或表格中。我可以使用属性网格,但对我的应用程序来说会变得很复杂。

fieldName   combobox
fieldName   checkbox
fieldName   combobox
fieldName   textfield

此外,我希望所有偶数行具有特定背景颜色,所有奇数行都具有其他一些背景颜色。我怎样才能做到这一点。感谢

1 个答案:

答案 0 :(得分:1)

关于颜色的第二个问题:

cls: y-field-striped属性添加到每个字段,这将为每一行添加一个css类。

现在使用一些自定义css:

.y-field-striped:nth-child(2n) { background-color: #eee } /* even */
.y-field-striped:nth-child(2n+1) { background-color: #aaa } /* odd */

小提琴:http://jsfiddle.net/Jandalf/8CJ7n/