or
@(Html.Kendo().MultiSelectFor(x => x.x2010ArchitectureModeling)
.Name("VS2010_Architecture_and_Modeling")
.Placeholder("Select features...")
.BindTo(new SelectList(ViewBag.vs2010ArchitectureModeling, "Value", "Text"))
public
IList<
string
> x2010ArchitectureModeling {
get
;
set
; }
public
ActionResult PlaceOrder(OrderFormViewViewModel model)
{
// model.x2010ArchitectureModeling is null here
}
1.
<input type=
"text"
class=
"MyClass"
/>
1.
<span class=
"k-widget k-datetimepicker k-header MyClass"
style=
"width: 200px;"
>
2.
<span class=
"k-picker-wrap k-state-default"
>
3.
<input id=
"mydatetimepicker"
style=
"width: 100%;"
data-role=
"datetimepicker"
type=
"text"
class=
"k-input MyClass"
role=
"textbox"
aria-haspopup=
"true"
aria-expanded=
"false"
aria-disabled=
"false"
aria-readonly=
"false"
aria-label=
"Current focused date is 5/22/2013 9:50:42 AM"
>
4.
<span unselectable=
"on"
class=
"k-select"
>
5.
<span unselectable=
"on"
class=
"k-icon k-i-calendar"
role=
"button"
aria-controls=
"datetimepicker_dateview"
>select</span><span unselectable=
"on"
class=
"k-icon k-i-clock"
role=
"button"
aria-controls=
"datetimepicker_timeview"
>select</span>
6.
</span>
7.
</span>
8.
</span>
1.
$(
'#mydatetimepicker'
)
2.
//Will return the input of line 3
1.
$(
'.MyClass'
)
2.
//Will return the span of line 1 and the input of line 3