or
<div class="col-md-3" style="vertical-align:middle"> @Html.LabelFor(m => m.DateFrom, new { @style = "width:100px" }) @(Html.Kendo().DatePickerFor(m => m.DateFrom) .Format("{0:yyyy/MM/dd}") .ParseFormats(new String[] { "MM/dd/yyyy hh:mm:ss" }) )</div><div class="col-md-3" style="vertical-align:middle"> @Html.LabelFor(m => m.DateTo, new { @style = "width:75px" }) @(Html.Kendo().DatePickerFor(m => m.DateTo) .Format("{0:yyyy/MM/dd}") .ParseFormats(new String[] { "MM/dd/yyyy hh:mm:ss" }) )</div>[Required][DataType(DataType.Date)][Display(Name = "Date from")]public DateTime DateFrom { get; set; } [Required][DataType(DataType.Date)][Display(Name = "Date to")]public DateTime DateTo { get; set; }<input aria-readonly="false" aria-disabled="false" aria-owns="DateFrom_dateview" aria-expanded="false" role="combobox" class="k-input" style="width: 100%;" data-role="datepicker" data-val="true" data-val-date="The field Date from must be a date." data-val-required="The Date from field is required." id="DateFrom" name="DateFrom" value="02/23/2015 00:00:00" type="text"> jQuery(function(){jQuery("#DateFrom").kendoDatePicker({"format":"yyyy/MM/dd","parseFormats":["yyyy/MM/dd","yyyy.MM.dd","MM/dd/yyyy hh:mm:ss"],"min":new Date(1900,0,1,0,0,0,0),"max":new Date(2099,11,31,0,0,0,0)});}); <input aria-readonly="false" aria-disabled="false" aria-owns="DateTo_dateview" aria-expanded="false" role="combobox" class="k-input" style="width: 100%;" data-role="datepicker" data-val="true" data-val-date="The field Date to must be a date." data-val-required="The Date to field is required." id="DateTo" name="DateTo" value="03/04/2015 23:59:00" type="text">jQuery(function(){jQuery("#DateTo").kendoDatePicker({"format":"yyyy/MM/dd","parseFormats":["yyyy/MM/dd","yyyy.MM.dd","MM/dd/yyyy hh:mm:ss"],"min":new Date(1900,0,1,0,0,0,0),"max":new Date(2099,11,31,0,0,0,0)});});var parentItem = wpTreeView.dataSource.get(parentId);parentItem.expanded = false;parentItem.loaded(false);parentItem.hasChildren = true;wpTreeView.expandPath([parentId], function () { var newItem = wpTreeView.dataSource.get(data.Id); var newListItem = wpTreeView.findByUid(newItem.uid); console.log(newListItem); wpTreeView.select(newListItem);});public class Venue { public Venue() { } public int venueid { get; set; } public string venuename { get; set; } }public class sEvent { public sEvent() { } public int eventid { get; set; } public DateTime start_time { get; set; } public DateTime end_time { get; set; } public string title{ get; set; } public string description { get; set; } public string reminder { get; set; } public string recurrence_rule { get; set; } public int recurrence_id { get; set; }
public virtual Venue venue { get; set; }
public virtual ICollection<Region> regionlist {get;set;} }@(Html.Kendo().MobileView().Name("Content1").Content(@<text>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tincidunt sollicitudin libero. Suspendisse ultrices volutpat dignissim. Vestibulum euismod tempor nisi eu porttitor. Suspendisse odio ligula, sagittis eu ultricies vel, maximus sit amet massa. Quisque ultrices rhoncus dignissim. Vivamus tristique arcu vitae eros pretium auctor.@(Html.Kendo().MobileButton().Name("Button1").Text("Hello World"))</text>)@(Html.Kendo().MobileLayout().Name("Layout1").Header(@<text><!-- bootstrap navbar --></text>).Footer(@<text>@(Html.Kendo().MobileTabStrip().Items(items =>{items.Add().Text("Home");items.Add().Text("Contact Us");items.Add().Text("About");}))</text>)