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
220
igGrid not refresh data when invoke savechanges
posted

I bound igGrid  data with rowTemplate.

my setting as follow:

 

.igGrid({

                autoGenerateColumns: false,

                rowTemplate: ds.RowTemplate,

                columns: ds.Columns,

                dataSource: ds.Table,

                jQueryTemplating: true,

                updateUrl: "/Update/UpdateDetails?updatedRows=" + JSON.stringify(detailsViewModel.updatedRows()) ,

                virtualization: false, // turn off when use jQueryTemplating

                localSchemaTransform: true,

                autoCommit: true,

                defaultColumnWidth: 180,

                width: "1024px",

                height: "600px",

                features: [

                        {

                            name: 'Resizing',

                            deferredResizing: true,

                            allowDoubleClickToResize: true

                        },

                        {

                            name: 'Selection',

                            mode: 'row',

                            multipleSelection: false

                        },

                        {

                            name: 'Sorting',

                            type: "local"

                        },

                    {

                        name: "Updating",

                        editMode: "cell",

                        enableAddRow: false,

                        enableDeleteRow: false,

                        columnSettings: ds.ColumnSettings

                    }

                    ]

 

            });

When invoke grid.igGrid("saveChanges"); The server is update successful return true. {"Success":true}

but the web page client does not fresh. It still remain the old value.

How do I resolved this issue?

Parents Reply Children
No Data