This question is locked. New answers and comments are not allowed.
I need to show a grid of columns selected at run-time with Razor. To achieve it I've made a System.Data.DataTable of the content in the view-model and bind to it:
This gives a bug in ie. Since I don't have control of the jquery-selector I had to use the easy work-around of adding an empty catch-block to the resolveWith-function in jquery. Is there a better way?
@(Html.Telerik().Grid(Model.DataTable).Name("Grid"))This gives a bug in ie. Since I don't have control of the jquery-selector I had to use the easy work-around of adding an empty catch-block to the resolveWith-function in jquery. Is there a better way?