Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
55
Usage questions
posted

Hello, I'm configuring a combo using the MVC helper:

@(Html.Infragistics().ComboFor(m => m.LocalAgent)
.ID("comboTest")
.TextKey("Info")
.ValueKey("Description")
.FilterExprUrlKey("value")
.FilteringType(ComboFilteringType.Remote)
.DataSource("http://localhost/API/GetAgents")
.Render())

When the view it's rendered the combo doesn't show the value from model. Why isn't it shown?  I also have seen that the combo does this ajax request to the server which doesn't have either:

http://localhost/API/GetAgents?textKey=Info&valueKey=Description&toLower=1&compact=1&_=1385716844622

Why is this request made without value?

Another question is: is there a way to pass the params to the request different to oData?.


Thanks!


Parents Reply Children