如何在jQuery的appendGrid控件的'type:select'中加载数据

时间:2017-06-02 07:52:44

标签: javascript jquery jsp

我知道通过使用json我们可以将数据加载到appendGrid控件,甚至我能够在''type:textarea''中动态加载数据。 但是想在appendgrid列表中加载数据,即'''type:''。 如何加载?

而不是硬编码选择值我希望它从java / Ajax中提供。 代码:

$( '#tblAppendGrid')addClass( '备用'); $(

'#tblAppendGrid')。appendGrid({ 标题:

'添加/修改产品', initRows:1,

列:[{

名称:

'LOB', 显示:

'LOB', 输入:

'选择', ctrlOptions:{

0:

'1', 1:

'2' }

1 个答案:

答案 0 :(得分:0)

您未正确关闭JSON参数:

$('#tblAppendGrid').appendGrid({
    caption : 'Add/Edit Product',
    initRows : 1,
    columns : [
      { name : 'LOB', display : 'LOB', type : 'select', ctrlOptions : { 0 : '1', 1 : '2' }}
    ]
});