Guest User

Untitled

a guest
Feb 18th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. @(Html.Kendo().DropDownList()
  2. .Name("CategoryId")
  3. .OptionLabel("Selecteer een categorie")
  4. .DataSource(ds => ds.Read(read => read.Action("GetQuestionCategories", "Questions").Data("getParentCategoryId")).ServerFiltering(true))
  5. .DataValueField("Value")
  6. .DataTextField("Text")
  7. .Events(events => events.Change("reloadLearningObjectives"))
  8. .HtmlAttributes(new { @class = "form-control wide-full" })
  9. )
Add Comment
Please, Sign In to add comment