This question is locked. New answers and comments are not allowed.
I have just updated to Q2 2011 any have run into a problem with my grid. I am using a popup to edit and insert however the popup is not editable due to this piece of css found in the telerik.common.min.css
If I remove the postion:fixed then the popup is usable however I then lose the popups opacity settings.
Has anyone run into this problem? is it a bug with the latest release or my code. Below is how I am binding the grid.
.t-overlay{width:100%;height:100%;position:fixed;top:0;left:0;background-color:#000;filter:alpha(opacity=50);If I remove the postion:fixed then the popup is usable however I then lose the popups opacity settings.
Has anyone run into this problem? is it a bug with the latest release or my code. Below is how I am binding the grid.
@{Html.Telerik().Grid(Model) .Name("Grid") .Editable(editing => editing.Mode(GridEditMode.PopUp)) .ToolBar(commands => commands.Insert().ButtonType(GridButtonType.ImageAndText).ImageHtmlAttributes(new { style = "margin-left:0" })) .DataKeys(k => k.Add("EmployeeID")) .Columns(columns => { columns.Command(commands => { commands.Edit().ButtonType(GridButtonType.Image); commands.Delete().ButtonType(GridButtonType.Image); }).Width(80).Title("Options"); columns.Bound(o => o.EmployeeName); columns.Bound(o => o.IsAdministrator).Title("Administrator"); columns.Bound(o => o.IsEnabled).Title("Account Enabled"); columns.Bound(o => o.EmployeeID).Hidden(); }) .DataBinding(dataBinding => dataBinding .Ajax() .Select("GetStaff", "BusinessAccount", new { id = (string)ViewData["id"] }) .Update("UpdateStaff", "BusinessAccount") .Insert("InsertStaff", "BusinessAccount") .Delete("DeleteStaff", "BusinessAccount") ) .Sortable() .Pageable() .ClientEvents(e => e.OnLoad("Grid_OnLoad")) .Footer(true) .Render();}