This question is locked. New answers and comments are not allowed.
Hi Telerik support team,
I have upgraded Telerik MVC extenstion used in my project from 2011.2.712.340 to 2011.3.1115.340 sucessfully.
But there is a new issue comes out with the latest version.
We are using the grid as following. When you filtered the grid and then you try to add a new entry (or edit an existing one), there will "
A Runtime error has occured. Error: Expected ';' " error message displayed! The error does not exist in preview version.
Could you give me some suggestioin to fix this??? Thanks very much in advance!!
You can reprodue this by the attached demo project.
I have upgraded Telerik MVC extenstion used in my project from 2011.2.712.340 to 2011.3.1115.340 sucessfully.
But there is a new issue comes out with the latest version.
We are using the grid as following. When you filtered the grid and then you try to add a new entry (or edit an existing one), there will "
A Runtime error has occured. Error: Expected ';' " error message displayed! The error does not exist in preview version.
Could you give me some suggestioin to fix this??? Thanks very much in advance!!
You can reprodue this by the attached demo project.
- launch the demo project
- Click filter icon of the 'Name' column, and input 'Name1' in the first textbox to complete one 'Is equal to' criteria. so we got the only one entry with name='Name1'
- Now click 'Add new record' button (or the 'edit' button)
- You'll see the error occured. (make sure you have enabled script debugging on your IE browser)
@(Html.Telerik().Grid(Model).Name("Grid") //.DataKeys(keys => keys.Add(p => p.Id)) .DataKeys(keys => keys.Add(p => p.Id).RouteKey("Id")) .ToolBar(commands => commands.Insert()) .Editable(edit => edit.Mode(GridEditMode.PopUp)) .DataBinding(binding => binding.Server() .Select("Index", "Home") .Insert("InsertEditing", "Home") .Update("SaveEditing", "Home") .Delete("DeleteEditing", "Home")) .Columns(columns => { columns.Bound(p => p.Name); columns.Bound(p => p.Surname); columns.Command(commands => { commands.Edit(); commands.Delete(); }).Title("Commands"); }) .Pageable() .Scrollable() .Sortable() .Filterable() )