Hello,
n my parent page, I have a kendo Grid(grid 1), which contains two command buttons Submit and Delete.
Once the user clicks on Submit, I am showing Partial View(Contains Kendo Grid (grid 2) in Kendo Window. On Window Close, using Databound function, I am making the submit button hide and Showing the delete button. When I click on Delete button, The same partial view which contains Grid 2 shows up but the style which is working when I click submit button not working. Here is the Style I am applying for partial view kendo Grid(Grid 2) in document.ready function
var grid = $("#Grid").data("kendoGrid");
grid.hideColumn(6);
$("#Grid").removeClass("Style");
$("#Grid").height('107');
$("#Grid").width('445');
n my parent page, I have a kendo Grid(grid 1), which contains two command buttons Submit and Delete.
Once the user clicks on Submit, I am showing Partial View(Contains Kendo Grid (grid 2) in Kendo Window. On Window Close, using Databound function, I am making the submit button hide and Showing the delete button. When I click on Delete button, The same partial view which contains Grid 2 shows up but the style which is working when I click submit button not working. Here is the Style I am applying for partial view kendo Grid(Grid 2) in document.ready function
var grid = $("#Grid").data("kendoGrid");
grid.hideColumn(6);
$("#Grid").removeClass("Style");
$("#Grid").height('107');
$("#Grid").width('445');
