I am running into some strange issue with edit form in edititemtemplate of a grid.
Using edit form to insert new records and when the form appears its visible under the boundary of the grid only.
Or it will be under the grid which i will have to scroll to see because right under the grid is another grid.
This was working fine before i applied latest release of AJAX Controls but now the pop ups are hidden behind containers. and controls.
Using edit form to insert new records and when the form appears its visible under the boundary of the grid only.
Or it will be under the grid which i will have to scroll to see because right under the grid is another grid.
This was working fine before i applied latest release of AJAX Controls but now the pop ups are hidden behind containers. and controls.
<telerik:RadGrid ID="CurrentSalesRepRadGrid" runat="server" CellSpacing="0" GridLines="None"
AllowAutomaticInserts="True" AutoGenerateColumns="False" DataSourceID="SalesRepSQLDS" style="z-index:9000">
<MasterTableView CommandItemDisplay="Top" DataSourceID="SalesRepSQLDS" EditMode="PopUp">
<CommandItemSettings ExportToPdfText="Export to PDF" AddNewRecordText="Take Over\Assign this Item" />
<RowIndicatorColumn FilterControlAltText="Filter RowIndicator column" Visible="True">
</RowIndicatorColumn>
<ExpandCollapseColumn FilterControlAltText="Filter ExpandColumn column" Visible="True">
</ExpandCollapseColumn>
...... Clolumns
<EditFormSettings EditFormType="Template" PopUpSettings-Width="700px">
<EditColumn FilterControlAltText="Filter EditCommandColumn column">
</EditColumn>
<FormTemplate>
<table border="1" style="width: 458px">
<tr>
<td class="style2">
Select SalesRep :
</td>
<td>
<telerik:RadComboBox ID="SalesRepRadComboBox" runat="server" AutoPostBack="True"
DropDownWidth="700px" EnableItemCaching="True" EnableLoadOnDemand="True" EnableVirtualScrolling="True"
Height="190px" HighlightTemplatedItems="True" ItemRequestTimeout="500" OnItemsRequested="SalesRepRadComboBox_ItemsRequested"
OnLoad="SalesRepRadComboBox_Load" Text='<%# Session["userId"] %>' ShowMoreResultsBox="True"
Width="330px" OnSelectedIndexChanged="SalesRepRadComboBox_SelectedIndexChanged">
<CollapseAnimation Duration="200" Type="OutQuint" />
<HeaderTemplate>
<ul>
<li class="col0">ID</li>
<li class="col1">Name</li>
<li class="col2">e-Mail</li>
<li class="col3">Company</li>
</ul>
</HeaderTemplate>
<ItemTemplate>
<ul>
<li class="col0">
<%# DataBinder.Eval(Container.DataItem, "UserId") %></li>
<li class="col1">
<%# DataBinder.Eval(Container.DataItem, "FullName") %></li>
<li class="col2">
<%# DataBinder.Eval(Container.DataItem, "email1") %></li>
<li class="col3">
<%# DataBinder.Eval(Container.DataItem, "Account") %></li>
</ul>
</ItemTemplate>
</telerik:RadComboBox>
</td>
</tr>
<tr>
<td class="style2">
Selected As SalesRep :
</td>
<td class="style2">
<asp:Label ID="SalesRepSelectedLabel" runat="server" OnLoad="SalesRepSelectedLabel_Load"></asp:Label>
<br />
<asp:Label ID="SalesRepLabel" runat="server" Text='<%# Bind("userId") %>' OnLoad="SalesRepLabel_Load2"></asp:Label>
</td>
</tr>
<tr>
<td class="style2">
Notes For Changing Sales Rep
</td>
<td>
<asp:TextBox ID="SalesRepChangingNotesTextBox" runat="server" Text='<%# Bind("Note") %>'
Height="51px" TextMode="MultiLine" Width="330px"></asp:TextBox>
</td>
</tr>
</table>
<asp:Button ID="Button1" runat="server" Text="Take over item" Width="100%" CommandName="PerformInsert"
OnClick="Button1_Click2" />
<br />
</FormTemplate>
<PopUpSettings Width="700px" />
</EditFormSettings>
</MasterTableView>
<FilterMenu EnableImageSprites="False">
</FilterMenu>
</telerik:RadGrid>