I have a PopUp Edit Form (via Custom UserControl) where part of the UI design is calling for us to show a 'search' window - i.e. a Customer Lookup/Search Screen...
We have a visual control and place a button next to it and wire-up a simple server-side OnClick handler. Even with the code-behind doing absolutely nothign other than a Debug.WriteLine() statement... The EditForm immediately closes...
How do I utlize additional 'buttons' on the form without it closing?
What we want the EditForm to really do when this button click occurs is to hide one DIV and show another where we can embed these type of 'search' mechanisms... And upon the search being completed/cancelled hide the DIV and restore the real EditForm div...
The other option being entertained is to show a RadWindow to host these search mechanism but the client preference is to avoid having more than 1 layer of popups going on... Additionally, I'm finding very little information on using RadWindow from code-behind - it seems to really be client-side focused... If we go with this route, I would like to use the RadWindow to show a UserControl rather than a Page - which doesn't sounds like an option from the little research I've done so far...
We have a visual control and place a button next to it and wire-up a simple server-side OnClick handler. Even with the code-behind doing absolutely nothign other than a Debug.WriteLine() statement... The EditForm immediately closes...
How do I utlize additional 'buttons' on the form without it closing?
What we want the EditForm to really do when this button click occurs is to hide one DIV and show another where we can embed these type of 'search' mechanisms... And upon the search being completed/cancelled hide the DIV and restore the real EditForm div...
The other option being entertained is to show a RadWindow to host these search mechanism but the client preference is to avoid having more than 1 layer of popups going on... Additionally, I'm finding very little information on using RadWindow from code-behind - it seems to really be client-side focused... If we go with this route, I would like to use the RadWindow to show a UserControl rather than a Page - which doesn't sounds like an option from the little research I've done so far...