Skip to main content
A newer version of this page is available. .

How to: Use callback to change another control's content on radio button list's selection changing

  • 2 minutes to read

This example demonstrates how to modify the content of a control (ASPxTextBox in this example) on changing the ASPxRadioButtonList’s value using callbacks.

In this example, the text box is wrapped in ASPxCallbackPanel which allows you to update its content dynamically using callbacks. For this purpose, the ASPxRadioButtonList class’s instance includes the ASPxClientListEdit.SelectedIndexChanged client-side event’s handler that invokes the callback panel’s ASPxClientCallbackPanel.PerformCallback client-side method and passes the selected value as a parameter.

The PerformCallback method generates the server-side ASPxCallbackPanel.Callback event that allows you to modify the text box’s content depending on the value received from the radio button list.

As a result, the text box’s mask is changed when the radio button list’s selected value is changed.

ASPxRadioButtonList-Cards

protected void ASPxCallbackPanel1_Callback(object sender, DevExpress.Web.CallbackEventArgsBase e)
{
    if (e.Parameter == "amex")
    {
        cardNumber.MaskSettings.Mask = "0000 000000 00000";
    }
    if (e.Parameter == "visa")
    {
        cardNumber.MaskSettings.Mask = "0000 0000 0000 0000";
    }
}