Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
120
UltraWebGrid in UpdatePanel is not working
posted

Hi,

I have a UltraWebGrid in an UpdatePanel but is not working.
Whenever i click on the trigger button, it only bind the dataset header to the UltraWebGrid but not with any rows of data. Here are part of my code, please if anyone know how to solve it.

 

 

 

 

 

 

 

<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Always">
<ContentTemplate>
<igtbl:UltraWebGrid id="gvResult" runat="server" width="157%" Browser="Xml" OnInitializeLayout="UltraWebGrid1_InitializeLayout" OnInitializeDataSource="UltraWebGrid1_InitializeDataSource" Height="111%">
</igtbl:UltraWebGrid>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="btnProcess" />
</Triggers>
</asp:UpdatePanel>

is anyone faced this before? The update panel work well if I just put a normal asp label inside.

Now it able to bind only Header inside, but not any rows of data.

Thanks.