Hi
Iam using webdate chooser.
i have button when i clicked that one it should populate the datecontrol with a column value of a grid .
it is working on server side like .
dtStartdate.vaue=grid.rows[0].cells[0].value;
but when i am trying at client side
document.getelementbyid(dtStartdate).value =row.getcellvalue(0);
its not working
Please also tell me how to set default value for it
You can use the CSOM (Client-Side Object Model) of the control to set the value. In general, IG controls employ syntax different from what Html controls use.
More info and a good starting point can be the CSOM reference in the manual:
http://help.infragistics.com/Help/NetAdvantage/NET/2007.3/CLR2.0/html/WebDateChooser_Object_CSOM.html
Hope this helps.