0

我有下面的代码,我想在其中向 webix 数据表添加记录。我是 JS 新手,所以不确定正确的定义以确保变量范围有效。

基本上我有一个寻呼机和数据表,这样可以正常工作:

    webix.ready(function(){

        webix.ui({
            id: "pagerA",
            view: "pager",
            template:"{common.prev()} {common.pages()} {common.next()}",
            container: "page_section",
            size: 15,
            group: 5
        });

        webix.ui({
            container:"gasforecast",
            rows: [
            {type: "header", template: "Gas Forecast"},
            gasgrid = {
            view:"datatable",
            editable: true,
            navigation: true,
            pager: "pagerA",
            columns:[
                { id:"PKey",            header:"",          hidden:true},
                { id:"SiteName",        header:"Site",      width:250, sort:"string"},
                { id:"PercentageChange",header:"% Change",  width:100, editor: "text", sort:"int"},
                { id:"kWChange",        header:"kW Change", width:100, editor: "text", sort:"int"}
            ],
            autoheight:true,
            autowidth:true,
            select:"row",

            save: "data/gasforecastdata_save.php",
            url: "data/gasforecastdata.php"
        }]});
    });

现在我希望能够有一个按钮,单击该按钮会在数据表中添加一行,所以我添加:

        cmdAddRow = webix.ui({
            container:"addbutton",
            view:"button",
            label: "Add Site",
            click: function() {
                var data = {"SiteName": "X", "PercentageChange": 1, "kWChange": 0};
                gasgrid.add(data);
            }

        });

但是,当单击按钮时,它会生成“未捕获的类型错误:gasgrid.add 不是函数”

我已尝试将 id: 属性添加到数据表并引用它,但仍然出现错误。不知道该怎么办?

谢谢

加里

4

1 回答 1

1

是的,使用 ID 是正确的方法。

如果您更改初始化代码,如下所示

{ type: "header", template: "Gas Forecast"},
{ view:"datatable", id:"gasgrid", editable: true

稍后您将能够引用数据表并调用其 API

webix.ui({
    container:"addbutton",
    view:"button",
    label: "Add Site",
    click: function() {
       var data = {"SiteName": "X", "PercentageChange": 1, "kWChange": 0};
       $$("gasgrid").add(data);
    }
})
于 2015-09-09T09:16:04.153 回答