Hi,
How do you popup a RadWindow to allow user to enter some input, close the window, and add the inputted text to the RadComboBox?
What is the best way to do this? I am trying to do this in a webpart.
Can controls be inserted into RadWindow programmatically?
How is information passed between the RadComboBox and RadWindow?
I tried doing this.
RadWindow popupWindow = new RadWindow();
popupWindow.VisibleOnPageLoad = true;
popupWindow.Modal = true;
Controls.Add(popupWindow);
Popupwindow will show up but how do I add controls to the popupWindow?
Please help! Thank you!
Jimmy