Back to Devexpress

AutoCompleteBoxBaseSettings.CallbackRouteValues Property

aspnetmvc-devexpress-dot-web-dot-mvc-dot-autocompleteboxbasesettings.md

latest2.8 KB
Original Source

AutoCompleteBoxBaseSettings.CallbackRouteValues Property

Specifies the names of a Controller and an Action that handle callbacks.

Namespace : DevExpress.Web.Mvc

Assembly : DevExpress.Web.Mvc5.v25.2.dll

NuGet Package : DevExpress.Web.Mvc5

Declaration

csharp
public object CallbackRouteValues { get; set; }
vb
Public Property CallbackRouteValues As Object

Property Value

TypeDescription
Object

An object that contains the Controller and Action names.

|

Remarks

cshtml
@Html.DevExpress().ComboBox(settings => {
    settings.Name = "comboBox";
    settings.CallbackRouteValues = new { Controller = "Editors", Action = "ComboBoxPartial" };
    <!-- ... -->
}).BindList(Model).GetHtml()

Run Demo: MVC ComboBox - Features

The CallbackRouteValues property allows you to pass only simple data (that do not require serialization) to the controller. If you need to send complex data, use one of the following approaches.

  1. Use the CallbackRouteValues collection to pass only the information that is required to recreate your complex model instance in the controller action (e.g., row keys or unique identifiers).
  2. Convert your complex model class into a simple data type. For instance, use the JSON encoding to pass the model to the controller as a string. Then, in the controller code, decode the passed value to get the model.
cshtml
@Html.DevExpress().ComboBox(settings => {  
    settings.Name = "ComboBox";  
    ...  
    settings.CallbackRouteValues = new {  
        Controller = "Home",  
        Action = "IndexPartial",  
        myComplexData = Json.Encode(Model.myListData)  
    };  
}).GetHtml()
csharp
public ActionResult IndexPartial(string SelectedIds) {  
    List<int> myData = System.Web.Helpers.Json.Decode<List<int>>(myComplexData);  
    ...  
}

See Also

Get Started

Callback-Based Functionality

AutoCompleteBoxBaseSettings Class

AutoCompleteBoxBaseSettings Members

DevExpress.Web.Mvc Namespace