Hi Inragistics Team,
Early we are used Infragistics version 10.0 now upgrading version 2015 v1 Volume .
early used two Ultrawebgrid & UlterGridband => replace with which control same in version 2015 v1 volume .
see below code :
<igtbl:ultrawebgrid id="ProductGrid" runat="server" width="100%" imagedirectory="/ig_common/Images/"
useaccessibleheader="False">
<displaylayout usefixedheaders="True" colwidthdefault="300px" stationarymargins="Header" allowsortingdefault="Yes"
rowheightdefault="20px" version="5.3" viewtype="Hierarchical" bordercollapsedefault="Separate"
rowselectorsdefault="No" loadondemand="Manual" name="ProductGrid" tablelayout="Fixed" cellclickactiondefault="CellSelect"
AllowUpdateDefault="Yes">
<addnewbox prompt="">
<igtbl:ultragridband BaseTableName="Table1" Key="Table1" DefaultColWidth="472px">
<headerstyle height="20px"></headerstyle>
<columns>
<igtbl:ultragridcolumn HeaderText="Family" Key="FamilyName" IsBound="True" Width="472px" BaseColumnName="FamilyName"
AllowUpdate="no">
<footer key="FamilyName"></footer>
<header key="FamilyName" caption="Family"></header>
</igtbl:ultragridcolumn>
Hello,
There is not a one to one mapping between the API's of the two controls and a better approach is to decide what functionality you need/want and then implement that in the WebDataGrid. In some cases it may not be necessary to handle all of the same events or their equivalent. You can refer to the Infragistics ASP.NET Grid Feature Cheat Sheat as a starting point on how to implement the same features. After going through that for how to topics it is recommended that you look through the Using WebDataGrid section of the ASP.NET online documentation.
Let me know if you have any questions with this matter.
Thanks for Replay Georgiev.