This question is locked. New answers and comments are not allowed.
Hello Telerik team,
I would like to know who to specify the tabindex value on an mvc combobox control, I already tried a few things but nothing seems to work, the last I tried is:
Thanks
I would like to know who to specify the tabindex value on an mvc combobox control, I already tried a few things but nothing seems to work, the last I tried is:
@(Html.Telerik().ComboBox() .Name("ddPhysicianSalutation") .AutoFill(true) .DataBinding(binding => binding.Ajax().Select("_GetSalutations", "Referrals").Cache(false)) .HtmlAttributes(new { tabindex = "20" }) .Filterable(filtering => { filtering.FilterMode(AutoCompleteFilterMode.StartsWith); }) .HighlightFirstMatch(true) .OpenOnFocus(true) )Thanks