I have a datagrid in Asp Update Panel and set the datasource from code behind in page load. I also have OnServerRowSelected function. When I click a row, the postback is triggered but the Grid goes missing entirely from the page.
<div id="menu1" class="tab-pane fade">
<asp:UpdatePanel ID="UpdatePanel2" runat="server">
<ContentTemplate>
<div class="row">
<div class="col-md-4">
<h5>New Request List</h5>
<ej:Grid ID="Grid" CssClass="table-responsive" OnServerRowSelected="Grid_ServerRowSelected" AllowScrolling="true" Width="200" AllowResizeToFit="true" AllowResizing="true" AllowSearching="true" AllowPaging="true" AllowRowDragAndDrop="true" runat="server" AllowSorting="true" AllowMultiSorting="true">
</ej:Grid>
</div>
<div class="col-md-4">
<asp:Label runat="server" ID="lbl2"></asp:Label>
</div>
</div>
</ContentTemplate>
<Triggers>
</Triggers>
</asp:UpdatePanel>
</div>