This question is locked. New answers and comments are not allowed.
Hi,
I am using the telerik grid with server side data binding within a Html.BeginForm() tag. Below is the code snippet:
...
...
The issue is that, when I am clicking the "Add new Record" button, the grid is coming into two parts only in IE. But, I have also tested this in Chrome, and there is no design issue. Any idea...
I am using the telerik grid with server side data binding within a Html.BeginForm() tag. Below is the code snippet:
<% Html.Telerik().Grid(Model.EmployeeDataList)
.Name(
"Grid")
.DataKeys(keys =>
{
keys.Add(d => d.EmployeeID).RouteKey(
"EmployeeID");
})
.ToolBar(commands => commands.Insert())
.DataBinding(databinding => databinding.Server().Insert(
"<ActionResult>", "<Controller>"))
.Columns(columns =>
{
...
...
})
.Editable(editing => editing.Mode(
GridEditMode.InLine))
.Scrollable()
.Footer(
false)
.Render();
The issue is that, when I am clicking the "Add new Record" button, the grid is coming into two parts only in IE. But, I have also tested this in Chrome, and there is no design issue. Any idea...