or

| <mcpsia:StyledRadGrid ID="gridScore" runat="server" Height="500px" Width="650px" GridLines="None" CellPadding="0"> |
| <MasterTableView GridLines="Both" EditMode="InPlace" PagerStyle-AlwaysVisible="true" PageSize="10" AllowPaging="true"> |
| <EditFormSettings> |
| <PopUpSettings ScrollBars="None" /> |
| </EditFormSettings> |
| <ExpandCollapseColumn Resizable="False" Visible="False"> |
| <HeaderStyle Width="20px" /> |
| </ExpandCollapseColumn> |
| <RowIndicatorColumn Visible="False"> |
| <HeaderStyle Width="20px" /> |
| </RowIndicatorColumn> |
| <HeaderStyle HorizontalAlign="Center" Width="50px" Wrap="False" /> |
| </MasterTableView> |
| <ClientSettings> |
| <Scrolling AllowScroll="True" FrozenColumnsCount="1" UseStaticHeaders="True" /> |
| </ClientSettings> |
| <HeaderStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False" |
| Font-Underline="False" Wrap="True" /> |
| </mcpsia:StyledRadGrid> |

var grid = <%= rgDRFormASPPFCaseInfo.ClientID %>;
var tableView = grid.MasterTableView;
var ID = tableView.GetCellByColumnUniqueName(tableView.Rows[RowIndex],"ID").innerHTML;
var ddlList = tableView.GetCellByColumnUniqueName(tableView.Rows[RowIndex],"Answer");
I tried to access ddlList like a drop down list, but it doesn't recognized the properties belong to the drop down list.
Please help
Thanks
I've got a RadGridView within a modal popup window, but the filter by list has the wrong Z-Index.
I've tried a few things to fix it and nothing seems to be working.
My latest attempt:
Style:
| myFilterStyle { z-index:100000000000000000000; } |
| <FilterItemStyle CssClass="myFilterStyle" /> |