I have a GridEditCommandColumn in the Grid of Webpage A.
<telerik:GridEditCommandColumn UniqueName="EditCommandColumn">
</telerik:GridEditCommandColumn>
<EditFormSettings UserControlName="SNEdit.ascx" EditFormType="WebUserControl">
<EditColumn UniqueName="EditCommandColumn1">
</EditColumn>
</EditFormSettings>
And I set the edit for setting as follow. I created a WebUserControl which contain several controls including a telerik combo box. I need to do an action like that. When the user change the selection of the combo box, then based on the selected value, a server-side function on Webpage A need to be triggered in order to retrieve the corresponding data from database to update the screen. I am not sure if the telerik control support this action? Thanks.
<telerik:GridEditCommandColumn UniqueName="EditCommandColumn">
</telerik:GridEditCommandColumn>
<EditFormSettings UserControlName="SNEdit.ascx" EditFormType="WebUserControl">
<EditColumn UniqueName="EditCommandColumn1">
</EditColumn>
</EditFormSettings>
And I set the edit for setting as follow. I created a WebUserControl which contain several controls including a telerik combo box. I need to do an action like that. When the user change the selection of the combo box, then based on the selected value, a server-side function on Webpage A need to be triggered in order to retrieve the corresponding data from database to update the screen. I am not sure if the telerik control support this action? Thanks.