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
180
Problem WebGrid versus UpdatePanel
posted

We have the following environment:

·         Windows XP

·         Visual Studio 2008

·         Microsoft Framework 3.5 SP1

·         Infragistic NetAdvantage webClient asp.net 2008 vol 3 CLR 3.5

 

 

We have a website developed in ASP.net (C#) which contains a series of controls, including controls: UltraWebTree, UltraWebGrid. We need the following behavior:

 

When you select a tree node [UltraWebTree] the application must select and highlight a row in the grid [UltraWebGrid] automatically

 

 

UltraWebGrid control is included in an UpdatePanel because several events need to update the information on this. We need to know if UltraWebGrid supports 100% Ajax .NET Frameworok 3.5. Because doing some tests with a page that has not implemented Ajax the same code works fine, except on pages where we put the UltraWebGrid within an UpdatePanel.

 

The code we are using to highlight a particular row is:

 

          this.uwg_gridClass2.DisplayLayout.ActiveRow = this.uwg_gridClass2.Rows[16];

          this.uwg_gridClass2.DisplayLayout.Rows[16].Selected = true;

          this.uwg_gridClass2.DisplayLayout.SelectedRows.Clear();

 

          We need to know if the UltraWebGrid is fully compatible with the UpdatePanel. If that alternative is not offered, we must install a windows or infragistic service pack?