-1

我有一个使用 appendgrid 进行列插入的案例。就我而言,我需要使用 LOV(值列表)或任何插件插入数据到 appendgrid 列。

然后我的问题是如何将数据从 LOV(或任何插件)发送到 apppendgrid 列。

下面的例子。谢谢你。

例子

4

1 回答 1

0

您并没有真正提供任何更有用的信息,所以我最好的猜测是以下(使用文档):

$(function() {
    $('#tblAppendGrid').appendGrid({
    // Object containing the definitions of the table rows
    initRows: RowDefinitons,
    // Your LOV Data
    initData: LOVData
    });
});
于 2016-09-08T07:09:52.337 回答