I have a problem using the popup edit form in the grid. In IE 7, the modal form is all greyed out. This works fine in Firefox 3.5. All the demos work fine in IE, so I'm assuming it's a CSS problem?
Above this code is a bunch of other divs, but here is the basics of it.
Any ideas? I'll keep trying to figure it out as I'm assuming it's a css problem.
Above this code is a bunch of other divs, but here is the basics of it.
| <div class="contentfull"> |
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="grdCourses"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="grdCourses" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <telerik:RadGrid ID="grdCourses" runat="server" AllowMultiRowEdit="false" AllowMultiRowSelection="false" |
| AllowSorting="true" Skin="Vista" Width="50%"> |
| <ClientSettings> |
| <Scrolling AllowScroll="false" /> |
| <Selecting AllowRowSelect="true"/> |
| </ClientSettings> |
| <ExportSettings Excel-FileExtension="xls" Excel-Format="ExcelML" ExportOnlyData="True" OpenInNewWindow="True"></ExportSettings> |
| <MasterTableView GridLines="None" EditMode="PopUp" CommandItemDisplay="TopAndBottom" AutoGenerateColumns="False" AllowPaging="False"> |
| <CommandItemSettings AddNewRecordText="Add New Course" /> |
| <Columns> |
| <telerik:GridEditCommandColumn></telerik:GridEditCommandColumn> |
| <telerik:GridBoundColumn UniqueName="CourseID" HeaderText="ID" DataField="CourseID"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn UniqueName="Title" DataField="Title" HeaderText="Title" Visible="True" ItemStyle-HorizontalAlign="Left"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn UniqueName="Description" DataField="Details" HeaderText="Description" Visible="False"></telerik:GridBoundColumn> |
| <telerik:GridButtonColumn UniqueName="Delete" CommandName="Delete" Text="Delete"></telerik:GridButtonColumn> |
| </Columns> |
| <EditFormSettings EditFormType="Template"> |
| <FormTemplate> |
| <div> |
| Hi Edit Form |
| </div> |
| </FormTemplate> |
| <PopUpSettings Height="800px" ScrollBars="None" Width="800px" Modal="true" /> |
| </EditFormSettings> |
| </MasterTableView> |
| </telerik:RadGrid> |
| </div><!--contentfull--> |
Any ideas? I'll keep trying to figure it out as I'm assuming it's a css problem.