Regarding updatecell api

“I don’t want to use updateUrl: "", and I don’t want this update to be triggered. Is there any way to remove or disable it? Even when I remove it from the script, it still gets triggered by default.”

@sarathepiq
you can set the load options : mode property to : read ,then it will not trigger the update action.
just work as a viewer not an editor.
you can check the doc here:

the example code shall be:

```
xs = x_spreadsheet('#gridjs-demo', {
			updateMode:'server',
			updateUrl:'',
			mode: 'read',
			showToolbar: false,
                        local: 'en',
			showContextmenu: false
			})
```