Commit ba1b59f3 authored by zihao21's avatar zihao21

Merge branch master into origin/master

parents b229c7a9 14998c34
###字段级通用方法
#### 设置字段必填属性
>Hel.setRequired(id,flag);
第一个参数id为字段的id,第二个参数flag为true时将该字段设为必填,为false时将该字段设为非必填。
```html
<h:hlsMaskedTextBox id="maskedTextBox"/>
<script><![CDATA[
Hel.setRequired('maskedTextBox',true);
]]></script>
```
####设置字段只读属性
>Hel.setReadonly(id,flag);
第一个参数id为字段的id,第二个参数flag为true时将该字段设为只读,为false时将该字段设为可输入。
```html
<h:hlsMaskedTextBox id="maskedTextBox"/>
<script><![CDATA[
Hel.setReadonly('maskedTextBox',true);
]]></script>
```
###窗口级通用方法
####打开功能窗口
>Hel.openMenuWindow(opts);
其中参数为:
属性名 | 类型 | 含义
-------- | ----- | -----
menuCode | String(必填) | 菜单代码
title | String(必填) | 窗口描述
url | Object(必填) | 窗口地址
menuName | String| 菜单名称
moduleFlag| String | 模块标志(Y/N)
documentKey| String | 打开同一个功能时,识别不同单据的唯一标识
reflashFlag| String | 关闭该功能菜单时是否刷新父级标志(Y/N)
moduleName| String | 模块名称
```
Hel.openMenuWindow({
menuCode:'',//传入相应的参数
title:'',
url:'',
menuName:'',
moduleFlag:'',
documentKey:'',
reflashFlag:'',
moduleName:''
});
```
####关闭功能窗口
>Hel.closeMenuWindow(opts);
其中参数为:
属性名 | 类型 | 含义
-------- | ----- | -----
menuCode | String(必填) | 菜单代码
```
Hel.closeMenuWindow({
menuCode:''//传入相应的参数
});
```
####打开右弹窗口
>Hel.openBarWindow(opts);
其中参数为:
属性名 | 类型 | 含义
-------- | ----- | -----
id| String(必填) | 打开窗口的div的id
url| String(必填) | 窗口的url地址
size| String(必填) | 右弹窗口的宽度(THIRD/HALF/FULL/任意px像素)
```
<div id="win"></div>
<script><![CDATA[
Hel.openBarWindow({
id:'win',
content:'',
size:''
});
]]></script>
```
# 前端开发手册 \(1.0\)
#### 开发说明
前端界面采用kendoUI开源框架,相同的显示效果可以采用多种代码方式来实现,为了规范项目组成员的代码样式,统一编码风格,避免以后维护的工作量,融租易采用封装标签的开发方式,当然如果在项目开发过程中遇到比较复杂的页面通过标签的方式实现不了的功能,需要跟产品组报备,然后采取源生的开发方式。
#界面多语言实现
界面中的多语言在数据库中统一存放在sys_prompts表中,系统启动时加载进redis缓存。界面中实现多语言是通过freemarker的标签以及对应的多语言code来实现。
例如:“确定”的多语言code是“sys.hand.btn.ok”在界面中的写法:
```html
<@spring.message "sys.hand.btn.ok"/>
```
# hlsCombobox标签
# hlsCombobox标签
hlsCombobox 下拉列表组件
ComboBox下拉列表组件,通常数据源以code - meaning形式出现,用户操作的是meaning,实际保存的是code。
```xml
<h: hlsCombobox placeholder="hlsCombobox" ```xml
valuePrimitive="true"
dataTextField="text" <h:hlsCombobox name="hlsCombobox" id="hlsCombobox"
dataValueField="value" bind="enabled: isEnabled,source: sdDataSource, value:data.code"
bind="enabled: isEnabled, source: comboboxSource, value:data.productId" colspan="3"
style="width: 100%;"/> dataTextField="meaning"
``` dataValueField="code"
placeholder="hlsCombobox"
### **主要属性** prompt="hlsCombobox"
promptColspan="1"
| 属性名 | 类型 | valuePrimitive="true"
| --- | --- | style="width:100%"
| animation | Boolean | />
| autoBind | Boolean |
| autoWidth | Boolean | ```
| cascadeFrom | String |
| cascadeFromField | String | ### **主要属性**
| clearButton | Boolean | 属性名 | 类型
| dataSource | DataSource | -------- | ---
| dataTextField | String | id | String
| dataValueField | String | promptColspan | String
| delay | Number | promptClassName | String
| enable | Boolean | promptImage | String
| enforceMinLength | Boolean | prompt | String
| filter | String | colspan | String
| fixedGroupTemplate | String \| Function | hlsClassName | String
| footerTemplate | String \| Function | animation | Boolean
| groupTemplate | String \| Function | autoBind | Boolean
| height | Number | autoWidth | Boolean
| highlightFirst | Boolean | cascadeFrom| String
| ignoreCase | Boolean | cascadeFromField | String
| index | Number | clearButton| Boolean
| minLength | Number | dataSource | DataSource
| noDataTemplate | String \| Function | dataTextField | String
| placeholder | String | dataValueField| String
| suggest | Boolean | delay | Number
| headerTemplate | String \| Function | enable | Boolean
| template | String \| Function | enforceMinLength| Boolean
| text | String | filter | String
| value | String | fixedGroupTemplate| String \| Function
| valuePrimitive | Boolean | footerTemplate| String \| Function
| virtual | Boolean | groupTemplate| String \| Function
| change | Function | height| Number
| close | Function | highlightFirst| Boolean
| dataBound | Function | ignoreCase| Boolean
| filtering | Function | index| Number
| open | Function | minLength| Number
| select | Function | noDataTemplate| String \| Function
| cascade | Function | placeholder | String
suggest| Boolean
> 属性用法请参考KendoUI文档 [http:\/\/docs.telerik.com\/kendo-ui\/api\/javascript\/ui\/combobox](http://docs.telerik.com/kendo-ui/api/javascript/ui/combobox) headerTemplate| String \| Function
template| String \| Function
### **用法示例** text| String
value| String
```xml valuePrimitive| Boolean
<h: hlsCombobox id="hlsCombobox" dataSource="dataSource" clearButton="true" placeholder="test" enable="false" template="fn:itemTemplate" change="onComboboxChange"/> virtual| Boolean
``` change| Function
close| Function
> **提示:** 某些属性类型为**String \| Function** 时,表明它可以定义为字符串或者函数。因此当需要定义为Function时需要增加前缀**fn:**来区分\(例如函数template="fn:itemTemplate" \) dataBound | Function
filtering| Function
### **主要子节点** open| Function
select| Function
* animation cascade| Function
* popup > 属性用法请参考KendoUI文档 [http://docs.telerik.com/kendo-ui/api/javascript/ui/combobox](http://docs.telerik.com/kendo-ui/api/javascript/ui/combobox)
* virtual
### **animation** ### **用法示例*
主要用来定义动画效果,例如打开关闭效果 ```javascript
* open 打开效果
* close 关闭效果
//对于系统定义好的数据源
| 属性 | 类型 | <script src="${base.contextPath}/common/code?sdDataSource=FND.CODING_RULE_TYPE" type="text/javascript"></script>
| --- | --- |
| effects | String |
| duration | Number | //自定义静态数据源sdDataSource
var sdDataSource= new kendo.data.DataSource({
```xml data:["one","two"]
<h: hlsCombobox id=" hlsCombobox "> });
<h:animation>
<h:close effects="zoom:out" duration="300"/> //自定义动态查询到的数据源sdDataSource
<h:open effects="zoom:in" duration="300"/> $.ajax({
</h:animation> type : 'GET',
</h: hlsCombobox > url : url,
``` async: false,
contentType : "application/json; charset=utf-8",
### **popup** success : function(datas) {
viewModel.set("sdDataSource,",datas.rows);
弹出窗口设置 }
});
| 属性 | 类型 |
| --- | --- | //需要注意,bind中写dataSource,需要在viewModel中定义
| appendTo | String | var viewModel = kendo.observable({
| origin | String | enabled: true,
| position | String | isEnabled: false,
data: {},
```xml sdDataSource:sdDataSource,
<h: hlsCombobox id="combobox"> });
<h:popup appendTo="container" origin="top left" position="top left"/>
</h: hlsCombobox > //下拉列表渲染函数
``` var itemTemplate = function (){
//...
### **virtual** }
动态加载相关设置 //选中某一个列表选项后触发
function onComboboxChange(e){
| 属性 | 类型 | var value = this.value();
| --- | --- | // Use the value of the widget.
| itemHeight | Number | }
| mapValueTo | String | //以上两种函数定义方法皆可
| valueMapper | Function | ```
```javascript ```xml
function valueMapper(){ <h:hlsCombobox name="hlsCombobox" id="hlsCombobox"
$.ajax({ bind="enabled: isEnabled,source: sdDataSource, value:data.code"
url: "http://demos.telerik.com/kendo-ui/service/Orders/ValueMapper", colspan="3"
type: "GET", dataTextField="meaning"
dataType: "jsonp", dataValueField="code"
data: convertValues(options.value), placeholder="hlsCombobox"
success: function(data) { prompt="hlsCombobox"
//the **data** is either index or array of indices. promptColspan="1"
//Example: valuePrimitive="true"
// 10258 -> 10 (index in the Orders collection) style="width:100
// [10258, 10261] -> [10, 14] (indices in the Orders collection) change="onComboboxChange"
options.success(data); template="fn:itemTemplate"
}
}) />
} ```
``` #### 特别注意 valuePrimitive="true" 如果该值为false,选中的值将不会匹配给dataTextField和dataValueField
dataValueField
```xml > **提示:** 某些属性类型为**String \| Function** 时,表明它可以定义为字符串或者函数。因此当需要定义为Function时需要增加前缀**fn:**来区分(例如函数template="fn:itemTemplate" )
<h: hlsCombobox id="combobox">
<h:virtual itemHeight ="20" mapValueTo="index" valueMapper="valueMapper"/>
</h: hlsCombobox >
```
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