This is a migrated thread and some comments may be shown as answers.

[Solved] Telerik Grid Design Issue

0 Answers 20 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Indrajit
Top achievements
Rank 1
Indrajit asked on 07 Jun 2012, 06:46 AM
Hi,

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...
Tags
Grid
Asked by
Indrajit
Top achievements
Rank 1
Share this question
or