91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

HTML5 Web app開發工具Kendo UI Web教程:如何配置Kendo UI Calendar

發布時間:2020-08-02 05:21:30 來源:網絡 閱讀:516 作者:mikez1026 欄目:移動開發

Kendo UI Web包含數百個創建HTML5 web app的必備元素,包括UI組件、數據源、驗證、一個MVVM框架、主題、模板等。本文來看看如何配置Kendo UI Calendar。

1、創建新的操作方法來顯示視圖:

public ActionResult Index()
{
    return View();
}

2、添加日歷

WebForms

<%: Html.Kendo().Calendar()
    .Name("calendar") //The name of the calendar is mandatory. It specifies the "id" attribute of the widget.
    .Min(new DateTime(2010, 1, 1, 10, 0, 0)) //Set min time of the calendar
    .Max(new DateTime(2010, 1, 1, 20, 0, 0)) //Set min date of the calendar
    .Value(DateTime.Now) //Set the value of the calendar
%>

Razor

@(Html.Kendo().Calendar()
    .Name("calendar") //The name of the calendar is mandatory. It specifies the "id" attribute of the widget.
    .Min(new DateTime(2010, 1, 1, 10, 0, 0)) //Set min time of the calendar
    .Max(new DateTime(2010, 1, 1, 20, 0, 0)) //Set min date of the calendar
    .Value(DateTime.Now) //Set the value of the calendar
)

訪問Existing Calendar

通過jQuery.data()引用一個現有日歷實例,一旦建議了引用,就可以使用API來控制它的行為。

訪問現有日歷實例

//Put this after your Kendo Calendar for ASP.NET MVC declaration
<script>
$(function() {
// Notice that the Name() of the calendar is used to get its client-side instance
var calendar = $("#calendar").data("kendoCalendar");
});
</script>

處理Kendo UI Calendar事件

通過Kendo UI Calendar可以訂閱所有的事件。

WebForms -由處理程序名稱訂閱

<%: Html.Kendo().Calendar()
    .Name("calendar")
    .Events(e => e
        .Change("calendar_change")
        .Navigate("calendar_navigate")
    )
%>
<script>
function calendar_navigate() {
    //Handle the navigate event
}
       
function calendar_change() {
    //Handle the change event
}
</script>

Razor -由處理程序名稱訂閱

@(Html.Kendo().Calendar()
  .Name("calendar")
  .Events(e => e
        .Change("calendar_change")
        .Navigate("calendar_navigate")
  )
)
<script>
function calendar_navigate() {
    //Handle the navigate event
}
     
function calendar_change() {
    //Handle the change event
}
</script>

Razor -通過模板委托訂閱

@(Html.Kendo().Calendar()
  .Name("calendar")
  .Events(e => e
      .Change(@<text>
        function() {
            //Handle the change event inline
        }
      </text>)
      .Navigate(@<text>
        function() {
            //Handle the navigate event inline
        }
        </text>)
  )

點擊下載Kendo UI Web

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临湘市| 深水埗区| 潢川县| 西充县| 茂名市| 乾安县| 新兴县| 深水埗区| 分宜县| 南雄市| 沁水县| 绍兴市| 措勤县| 天柱县| 宜宾市| 攀枝花市| 南雄市| 星子县| 大同市| 梅河口市| 格尔木市| 荔波县| 衡东县| 武川县| 双鸭山市| 唐海县| 光山县| 礼泉县| 高青县| 称多县| 十堰市| 裕民县| 东港市| 平湖市| 沙洋县| 武隆县| 酒泉市| 台南县| 三穗县| 惠东县| 巩义市|