Where can I find information about the right function I have to use to get each control with javascript.
I all ready have:
igedit_getById, igtab_getTabById.
But I would like to know wich function I need to use for the rest of controls, like WebNumericEditor.
Hi Alfredo,
You should look at "Client Side Model Object (CSOM) Reference Guide." docs for a control. That should be part of installed help or you may look on line for a particular product. For example: http://help.infragistics.com/NetAdvantage/ASPNET/2010.1/CLR3.5/
WebTextEdit object will contains something like:"... That object can be obtained by calling the igedit_getById function and providing the ClientID or UniqueID as a parameter..."
You also may use global method ig$ which is a test-wrapper for most js methods used by Infragistics.WebUI controls. For example:
var editor = ig$('WebNumericEdit1');var tab = ig$('UltraWebTab1');