我知道通过使用json我们可以将数据加载到appendGrid控件,甚至我能够在''type:textarea''中动态加载数据。 但是想在appendgrid列表中加载数据,即'''type:''。 如何加载?
而不是硬编码选择值我希望它从java / Ajax中提供。 代码:
$( '#tblAppendGrid')addClass( '备用'); $(
'#tblAppendGrid')。appendGrid({ 标题:
'添加/修改产品', initRows:1,
列:[{
名称:
'LOB', 显示:
'LOB', 输入:
'选择', ctrlOptions:{
0:
'1', 1:
'2' }
答案 0 :(得分:0)
您未正确关闭JSON参数:
$('#tblAppendGrid').appendGrid({
caption : 'Add/Edit Product',
initRows : 1,
columns : [
{ name : 'LOB', display : 'LOB', type : 'select', ctrlOptions : { 0 : '1', 1 : '2' }}
]
});