I have a button inside the grid. From that button I want to open a window that has a combo box in it.
After the user selects a value from the combo i want the control to return to the button and do further processing based on the value returned from the window.
So far I have been able to open a window containing a combo box. However my combo box looks like a textbox with a select keyword next to it.
After I click on my combo box I get the list of items from the database but it is displayed as a list with bullets and I am not able select any value.
It doesn't look like a combo box.
please help.
Below is my code on the modal dialog page that contains the combo box:
After the user selects a value from the combo i want the control to return to the button and do further processing based on the value returned from the window.
So far I have been able to open a window containing a combo box. However my combo box looks like a textbox with a select keyword next to it.
After I click on my combo box I get the list of items from the database but it is displayed as a list with bullets and I am not able select any value.
It doesn't look like a combo box.
please help.
Below is my code on the modal dialog page that contains the combo box:
<
form id="form1" runat="server">
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
</telerik:RadScriptManager>
<div>
<telerik:RadComboBox ID="ddlReportingPeriodEndDate" runat="server" EnableEmbeddedSkins="false" EnableLoadOnDemand="false" AppendDataBoundItems="false" LoadingMessage="Loading dates..." MarkFirstMatch="True" ToolTip="Select report period end date" AllowCustomText="false" CssClass="editfield" Width="110px">
</telerik:RadComboBox>
</div>
</form>
My Code to cal the window is:
function
ShowDialogPopup()
{
var oWnd = radopen("NewDialog.aspx");
}
which is called from the onclientclick event in the button.