I am dynamically trying to create CRUD grid in AngularJS .
I successfully created Grid by assigning dataSource to Grid Options Dynamically.
But I have having problems when I click on Editting Data .
Clicking on Edit Command Button throws me an Error like this:
Uncaught TypeError: Cannot read property 'slice' of null
at ve._extractFormat (http://localhost:59366/kendo/js/kendo.all.min.js:27:19054)
at new init (http://localhost:59366/kendo/js/kendo.all.min.js:175:2141)
at HTMLInputElement.<anonymous> (http://localhost:59366/kendo/js/kendo.all.min.js:32:3585)
at Function.each (http://localhost:59366/Scripts/jquery-1.10.2.min.js:21:5347)
at M.fn.init.each (http://localhost:59366/Scripts/jquery-1.10.2.min.js:21:1999)
at M.fn.init.e.fn.(anonymous function) [as kendoNumericTextBox] (http://localhost:59366/kendo/js/kendo.all.min.js:32:3559)
at number (http://localhost:59366/kendo/js/kendo.all.min.js:196:1854)
at init.editor (http://localhost:59366/kendo/js/kendo.all.min.js:197:709)
at init.refresh (http://localhost:59366/kendo/js/kendo.all.min.js:200:795)
at new init (http://localhost:59366/kendo/js/kendo.all.min.js:197:176)
Data Type of my Column is Number .
Can you give me an example of Dynamic Grid CRUD Edit and Update Operations ? So that I can know where I am going wrong.
Thanks .