Hi,
In my page i am using two <updatepanel> controls. One of the <updatepanel> is having WHDG. On server side row selectionchagned event of it i want to update the value of label control which is inside Infragistics tab control in another <updatepanel>.
I got a sollution for this but in that i have to keep WHDG's EnableAjax property to false. I want to perform this with WHDG EnableAJAX = true.
Can someone suggest any idea?
Thanks,
Mits
Hello Mits,
Another possible solution would be to change the text of the label from the client side. For example like this:
function WebHierarchicalDataGrid1_Selection_RowSelectionChanging(sender, eventArgs) {
///<summary>
///
///</summary>
///<param name="sender" type="Infragistics.Web.UI.WebHierarchicalDataGrid"></param>
///<param name="eventArgs" type="Infragistics.Web.UI.RowSelectionChangingEventArgs"></param>
var tab = $('#WebTab1');
var label = tab[0].control._tab.findChild("Label1");
label.textContent = "Change";
}
I hope this solution would work for you although I would still recommend either setting EnableAjax to false or not using an update panel since this combination may give unexpected results.
If you have any further questions don’t hesitate to ask. I’m attaching the sample I tested on for your reference.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support
Hi Maya,
Thanks for quick reply. My this issue has fixed.
Regards,