Hi
I want to use javascript to move a WebDateChooser control at runtime. Any ideas?
You would use our CSOM to accomplish this. The following code moves it the control 100 pixels from the top and 100 pixels from the left:
oCombo.Element.style.position = "absolute";
oCombo.Element.style.top = "100px";
If you do a search for CSOM, you will get a lot of information regarding what CSOM is and what it allows you to do.