Hello guys,
I am very new in web-Development. So I have this problem:
I load datas to an ultraweb-grid. The grid is not expanded at that moment. Now our customers need an additional check-Box where they like to have: If the checkbox is true than the grid should expand all bands, if it is false it should close all the bands.
so I know, how to handle, the checkbox and so on, but I'm missing something like an ultragrid.refresh for showing the ultragrid expanded or not expanded.
I have to react on this click with the grid. How can I handle this point without loading all the datas again? The datas are allready there. I load it complete at the first time.
Thanks for help
Carla
CheckBox:
<asp:CheckBox ID="ExpandCheckBox" Text="Expand" runat="server" AutoPostBack="true" />
Handler:
Me.LoadOrdersGrid() ' Re-populate the grid - band(1) defaults to collapsed.
If Me.ExpandCheckBox.Checked Then Me.OrdersUltraWebGrid.ExpandAll() End If
End Sub