Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
35
IgCombo at IGrid colum with remote paging error and edit/updating/add/delete enable
posted

Hi,

I am testing/checking infragistics capabilities and I have been working specifically with above two widgets. IgGrid remote features are working well, as well as IgCombo remote features. However, I found an error while trying to combine both widgets at the same time. IgCombo in IgGrid column edit/updating/add/delete enable:

{
        name: 'Updating',
        enableAddRow: true,
        enableDeleteRow: true,
        editMode: 'row',
        columnSettings: [
            {
                columnKey: "journal_gl_chart_id",
                editorType: 'combo',
                required: true,
                editorOptions: {
                    mode: "dropdown",
                    loadOnDemandSettings: {
                        enabled: true,
                        pageSize: 20
                    },
                    responseDataKey: "data",
                    responseTotalRecCountKey: "recordCountKey",
                    dataSource: location.protocol + "//" + location.host + '/Journal/GetCharts/',
                    dataSourceType: 'json',
                    HeaderTemplate: '<div class="boxed">Charts</div>',
                    footerTemplate: '<div class="boxed">Chart Count: {0} of {3}</div>',
                    textKey: "chart_master_code",
                    valueKey: "chart_master_id"
                }
            },
            {
                columnKey: "journal_gl_description",
                editorType: 'string',
                required: true
            },
                
        ]
    }

If I set up above IgCombo as a sole combobox, It will work without problems, on the other hand if I set up IgGrid column as a IgCombo with local json. It works too.

Infragistics.Web.Mvc 5.17.2.183

Parents Reply Children
No Data