Commit 868b2a46 authored by 11277's avatar 11277

Update hlsDatePicker.md

parent d2c2916a
# hlsDatePicker标签 # hlsDatePicker标签
日期选择器 日期选择器(不包含时分秒)
```xml xml配置
<h:hlsDatePicker id="hlsDatePicker ```
<!--基本用法-->
<h:hlsDatePicker id="hlsDatePickerId" bind="enabled:isEnabled,value:data.value" placeholder="hlsDatePicker"/>
``` ```
### **主要属性** ### **主要属性**
| 属性名 | 类型 | 属性名 | 类型
| --- | --- | -------- | -----
| culture | String | promptColspan | Integer
| depth | String | promptClassName | String
| footer | String \| Function | promptImage | String
| format | String | prompt | String
| max | String | colspan | Integer
| min | String | hlsClassName | String
| start | String | animation | Boolean
| value | String | ARIATemplate| String
| name | String | culture | String
| bind | Function | depth| String
| required | Boolean | footer| String & Function
| change | Function | format| String
| close | Function | max| String
| open | Function | min| String
| placeholder | String | start| String
value | String
> **提示:** 属性用法请参考kendoui API文档 [http:\/\/docs.telerik.com\/kendo-ui\/api\/javascript\/ui\/datepicker](http://docs.telerik.com/kendo-ui/api/javascript/ui/datepicker) name | String
bind | Function
required | Boolean
change | Function
close| Function
open | Function
placeholder | String
interval |Integer
timeFormat |String
> **提示:** 属性用法请参考kendoui API文档 http://docs.telerik.com/kendo-ui/api/javascript/ui/datetimepicker
### **用法示例** ### **用法示例**
```javascript
//注意是写在script标签内的
var viewModel = kendo.observable({
data:{},
isEnabled:true
});
function open(){
//...
}
function change(e){
//...
}
```
```xml ```xml
<h:hlsDatePicker id="hlsDatePicker" <h:hlsDatePicker id="hlsDatePickerId"bind="enabled: isEnabled,value:data.value"
max="2016-10-14" style="width:200px;"
name="datepicker" max="2016-6-6"
placeholder="datepicker" placeholder="hlsDatePicker"
bind="value:data.birthday" open="open"
required="true" open="open" footer="fn:footer"/> required="true"
change="change"
prompt="日期选择器:"
/>
id:可写可不写;
bind:属性里面包含配置两个选项:
(1)enabled配置日期选择器是否可以编辑,值为Boolean类型的变量,在viewModel里面配置。
(2)value配置日期选择器与变量关联,默认是在ViewModel下面的变量;
max:可选择日期的上限值;
style可改变该控件的样式;
open:点击控件调用的方法;
change:选择日期之后的事件;
prompt:为控件添加一个label,该属性一般和<h:hlsForm><h:hlsHBox>一起使用;
``` ```
> **提示**: > **提示:**
>
> * 遇到**object**类型 就向下添加子标签,当遇到普通类型时,就添加到当前的标签上。 > - 上述所有属性直接添加在标签内即可,(**[属性名] = "..."**),对于既是**String**类型又是**Function**类型的属性,只需要加**fn:**前缀区分即可,(**fn:函数名**)
> - 对于**max min**等本该是**时间类型**的属性,改为日期字符串,且连接符号为"**-**"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment