Kendo UI API中文介绍一:UI

Kendo UI是著名界面控件开发商Telerik的旗舰产品,既能开发网页应用,也能开发跨平台移动应用,在HTML5 UI开发框架中具有广泛的知名度。



Kendo UI API中文介绍一:UI_第1张图片


方法

plugin

用于编写新组件的辅助方法。 jQuery插件负责创建组件并以合适的data-*属性将它与客户端对象相连。


示例:

function TextBox(element, options) {

}

kendo.ui.plugin(TextBox);

// initialize a new TextBox for each input,with the given options object.

$("input").kendoTextBox({ });

// get the TextBox object and call thevalue API method

$("input").data("kendoTextBox").value();


参数

Kendo UI API中文介绍一:UI_第2张图片


参数


示例:

<div id="container"style="position:relative">...</div>

<script>

var ajaxContainer =$("#container");

// show loading overlay

kendo.ui.progress(ajaxContainer, true);

// hide loading overlay

kendo.ui.progress(ajaxContainer, false);

</script>


公司名称:北京哲想软件有限公司

北京哲想软件官方网站:www.cogitosoft.com

北京哲想软件微信公众平台账号:cogitosoftware

北京哲想软件微博:哲想软件

北京哲想软件邮箱:[email protected]

销售(俞先生)联系方式:+86(010)68421378

微信:18610247936 QQ:368531638


你可能感兴趣的:(Kendo UI API中文介绍一:UI)