Another question about WDW.I have WebUserControl (called JsList1) and a button in the WDW (called wdwHost)Working fine.Now, I need using that button to refer to a component that resides on JsList1.And this component is hidden text field.Its name ends with hCheckedItems.I mean, that I need to find a component in JsList control by name and not by ID.I tried to access to my control using this code, but it was vain:var JsList1 = document.getElementById('<%=JsList1.ClientID%>');I do succeed to access WDW itself:var wdwHost = document.getElementById('<%=wdwHost.ClientID%>');My idea was to get JsList id and then to find hCheckedItems using JsList id.Please, help.
Managed it by myself.Using IG help website.http://help.infragistics.com/NetAdvantage/NET/2008.3/CLR3.5/var wdwHost = $find('<%=wdwHost.ClientID%>');var hCheckedItems = wdwHost.findChild('hCheckedItems');alert(hCheckedItems.value);