I followed the sample you pointed out in the help file..
I added a WebDateChooser control to my aspx form. Already have a grid control.
When I get to the part:
From the EditorControlID property, select the ID of the editor on the ASPX page you wish to use for the selected field.
There is nothing in the dropdown box to add.
What am I doing wrong?
I thought that might be the case.
I have a grid on panel... I put the date control on the panel as well. Still didin't show up. But when I manually put the code in the html side. design side of the form it worked.
VS2008 is very picky...
The VisualStudio designer is a bit picky sometimes, and refuses to show the controls. This usually happens if your editor is in a different container than your grid. For instance if you put the editor on page, and your grid is in a panel, or vice-versa. Even though the ID isn't showing up, you can still get things working by manually entering in the ClientID of the editor control. If the editor is directly on the page and not in a container (recommended) the ClientID will be the same as the ID.
-Tony