Hi,
We have the following code in the aspx file to enable ajax page post back when clicked on a button or a check box is checked to fetch results for the grid based on the criteria given in the text box.
<
telerik:RadAjaxManagerProxy
ID
=
"RadAjaxManagerProxyCustomerPage"
runat
=
"server"
>
<
AjaxSettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"btnSearch"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"CustomerGrid"
UpdatePanelHeight
=
""
LoadingPanelID
=
"RadAjaxLoadingPanelCustomer"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
<
telerik:AjaxSetting
AjaxControlID
=
"chkIncludeDeprecated"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"CustomerGrid"
UpdatePanelHeight
=
""
LoadingPanelID
=
"RadAjaxLoadingPanelCustomer"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
</
AjaxSettings
>
</
telerik:RadAjaxManagerProxy
>
<
telerik:RadAjaxLoadingPanel
ID
=
"RadAjaxLoadingPanelCustomer"
runat
=
"server"
Skin
=
"Default"
InitialDelayTime
=
"200"
MinDisplayTime
=
"300"
>
</
telerik:RadAjaxLoadingPanel
>
In the above code, after the part
<
telerik:AjaxSetting
AjaxControlID
=
"btnSearch"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"CustomerGrid"
UpdatePanelHeight
=
""
LoadingPanelID
=
"RadAjaxLoadingPanelCustomer"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
was added, the submit button no longer appears as a submit button (<input type="submit"/>) but a normal button(<input type="button"/>) rendered to the page. As a result after the user enters a text in the search criteria and hits the enter key the page is not submitted, until the user clicks the button.
Can somone help what could we be missing in the code while we configured ajax action for the button, that it lost the submit behavour.
Thanks,
Manoj