Component

FineUI. Component

可视控件基类(所有有 DOM 渲染的控件的共同父类)。

抽象基类,不能直接实例化FineUI.create({ type: 'Component' }))。 此类提供所有可视控件共有的能力:渲染 / 显示隐藏 / 启用禁用 / 尺寸 / 事件绑定 / tooltip / 父容器布局参数等。

直接子类:

Constructor

(abstract) new Component(options)

Parameters:
Name Type Description
options Object

初始参数

Properties
Name Type Default Description
renderTo string ''

渲染到的DOM节点

cls string ''

CSS类

disabled boolean false

是否禁用

tooltip string ''

提示信息

tooltipType string 'qtip'

提示信息类型(可选项为:qtip, title)

tooltipTitle string ''

提示信息标题(仅在 tooltipType=qtip 时有效)

tooltipHideMode string 'auto'

提示信息隐藏模式(仅在tooltipType=qtip时有效)(可选项为:auto, user)

tooltipPosition string ''

提示信息的位置(仅在tooltipType=qtip时有效)(可选项为:'', top, topstart, topend, bottom, bottomstart, bottomend, left, leftstart, leftend, right, rightstart, rightend)

hidden boolean false

是否隐藏

hiddenMode string 'display'

隐藏模式(可选项为:display, visibility, offsets)

style string | Object

CSS样式

attrs Object

节点属性

attrSelector string ''

节点属性对应的节点(默认为this.el)

width number

宽度

height number

高度

anchor string ''

锚点值(当父容器的布局为anchor时有效)

columnWidth string ''

列宽度(介于0-1的小数,比如0.25)(当父容器的布局为column时有效)

x number

绝对定位的X坐标(当父容器的布局为absolute时有效)

y number

绝对定位的Y坐标(当父容器的布局为absolute时有效)

rowspan number

表格合并行数(当父容器的布局为table时有效)

colspan number

表格合并列数(当父容器的布局为table时有效)

flex number

子控件的尺寸(当父容器的布局为vbox或者hbox时有效)

block number

块大小,超小屏幕(当父容器的布局为block时有效)

blockSM number

块大小,小屏幕(当父容器的布局为block时有效)

blockMD number

块大小,中等屏幕(当父容器的布局为block时有效)

blockLG number

块大小,大屏幕(当父容器的布局为block时有效)

listeners Object

初始事件绑定(key 为事件名,value 为回调函数;语义等价于控件创建后调用 on() 逐一绑定。详见 on() 方法的对照示例)

type string 'Component'

控件类型

Extends

Members

el :jQuery

Description:
  • 控件对应的jQuery节点对象

控件对应的jQuery节点对象

Type:
  • jQuery

Methods

disable()

Description:
  • 禁用控件(按钮变灰、表单字段不可输入;可用isDisabled查询当前状态)

Example

提交期间禁用按钮,避免重复提交(用 jQuery 的 $.ajax):

FineUI.create({
    type: 'Button', text: '提交',
    handler: function () {
        var me = this;
        me.disable();
        $.ajax({
            url: '/api/save', method: 'POST', dataType: 'json',
            complete: function () {
                me.enable();
            }
        });
    }
});

doLayout(startFormTopmostComonentopt)

Description:
  • 执行布局操作

Parameters:
Name Type Attributes Default Description
startFormTopmostComonent boolean <optional>
false

从最顶层的控件开始布局

enable()

Description:
  • 启用控件(与disable对应)

getAttr(key) → {string}

Description:
  • 获取节点属性

Parameters:
Name Type Description
key string

节点属性键

Returns:

节点属性值

Type
string

getEncodedText(text) → {string}

Description:
  • 获取编码后的字符串

Parameters:
Name Type Description
text string

原始字符串

Returns:

编码后的字符串

Type
string

getHeight() → {number}

Description:
  • 获取控件高度

Returns:

高度

Type
number

getTooltip() → {string}

Description:
  • 获取提示信息

Returns:

提示信息

Type
string

getWidth() → {number}

Description:
  • 获取控件宽度

Returns:

宽度

Type
number

hide()

Description:
  • 隐藏控件(默认通过 CSS display:none 隐藏;可通过hiddenMode选择 visibility/offsets 模式以保留布局空间)

Example

根据权限隐藏按钮:

if (!currentUser.canEdit) {
    FineUI.ui.btnEdit.hide();
}

isDisabled() → {boolean}

Description:
  • 是否禁用

Returns:

是否禁用

Type
boolean

isType(value) → {boolean}

Description:
  • 检测当前实例是否指定的控件类型

Inherited From:
Example
grid1.isType('panel') // 返回true
grid1.isType('grid')  // 返回true
Parameters:
Name Type Description
value Object

控件类型

Returns:

如果当前实例是指定的控件类型,返回true;否则返回false

Type
boolean

isVisible() → {boolean}

Description:
  • 是否可见

Returns:

是否可见

Type
boolean

off(eventNames, fnopt)

Description:
  • 移除事件

Examples

移除特定回调:

function onMyClick() { ... }
FineUI.ui.btn1.on('click', onMyClick);
// 后续解绑:
FineUI.ui.btn1.off('click', onMyClick);

移除某事件下的全部回调(不传 fn 参数):

FineUI.ui.btn1.off('click');
Parameters:
Name Type Attributes Description
eventNames string

事件名称(可以空格分割多个事件名称)

fn F_Component_on <optional>

之前注册的事件处理函数(留空则移除该事件的所有回调)

on(eventNames, fn)

Description:
  • 注册事件(运行时绑定;与配置参数listeners的初始绑定等价,但可在控件创建后动态追加)

Examples

初始绑定形态:在FineUI.create时通过listeners配置项一次性声明:

FineUI.create({
    type: 'Button', renderTo: document.body, text: '按钮',
    listeners: {
        click: function (event) {
            FineUI.alert('button clicked');
        },
        // 同一个 listeners 内可以同时声明多个事件
        beforeclick: function (event) {
            // 返回 false 可阻止 click 事件
        }
    }
});

运行时绑定形态:控件创建后通过on()追加,效果与上面的listeners等价:

FineUI.ui.btn1.on('click', function (event) {
    FineUI.alert('button clicked');
});

on()一次绑定多个事件(事件名之间空格分隔):

FineUI.ui.tbxName.on('focus blur', function () {
    console.log('focus 或 blur 触发');
});
Parameters:
Name Type Description
eventNames string

事件名称(可以空格分割多个事件名称)

fn F_Component_on

触发事件时执行的函数

remove()

Description:
  • 从父控件中移除当前控件并销毁其 DOM(不可恢复;移除后 FineUI.ui[id] 也会清除)。触发 remove 事件可用于清理外部资源。

Example

动态添加 + 移除子控件:

var btn = FineUI.create({
    type: 'Button', text: '临时按钮', renderTo: document.body
});
// 5 秒后移除
setTimeout(function () {
    btn.remove();
}, 5000);

removeAttr(key)

Description:
  • 删除节点属性

Parameters:
Name Type Description
key string

节点属性键

removeTooltip()

Description:
  • 删除提示信息

setAttr(key, value)

Description:
  • 设置节点属性

Parameters:
Name Type Description
key string

节点属性键

value string

节点属性值

setAttrs(attrs)

Description:
  • 设置节点属性

Parameters:
Name Type Description
attrs Object

节点属性对象

setDisabled(disabled)

Description:
  • 设置控件的禁用状态

Parameters:
Name Type Description
disabled boolean

是否禁用

setEnabled(enabled)

Description:
  • 设置控件的启用状态

Parameters:
Name Type Description
enabled boolean

是否启用

setHeight(height)

Description:
  • 设置控件高度

Parameters:
Name Type Description
height number

高度

setHidden(hidden)

Description:
  • 设置控件的隐藏状态

Parameters:
Name Type Description
hidden boolean

是否隐藏

setSize(width, height)

Description:
  • 设置控件尺寸(同时设置宽高;等价于setWidth + setHeight但只触发一次布局)

Example

响应窗口 resize 调整面板尺寸:

$(window).on('resize', function () {
    FineUI.ui.panel1.setSize($(window).width() - 20, $(window).height() - 40);
});
Parameters:
Name Type Description
width number

宽度

height number

高度

setTooltip(tooltip)

Description:
  • 设置提示信息

Parameters:
Name Type Description
tooltip string

提示信息

setVisible(visible)

Description:
  • 设置控件的显示状态

Parameters:
Name Type Description
visible boolean

是否可见

setWidth(width)

Description:
  • 设置控件宽度

Parameters:
Name Type Description
width number

宽度

show()

Description:
  • 显示控件(与hide对应)

Example

根据下拉列表的选中项,联动显示某区块:

FineUI.ui.ddlType.on('change', function () {
    if (this.getValue() === 'advanced') {
        FineUI.ui.pnlAdvanced.show();
    } else {
        FineUI.ui.pnlAdvanced.hide();
    }
});

toggleEnabled()

Description:
  • 切换启用状态

toggleVisible()

Description:
  • 切换显示状态

trigger(eventName, args)

Description:
  • 触发事件

Parameters:
Name Type Description
eventName string

事件名称

args Object

事件参数

Events

beforehide

Description:
  • 隐藏控件之前触发(返回false则取消隐藏操作)

beforeshow

Description:
  • 显示控件之前触发(返回false则取消显示操作)

hide

Description:
  • 隐藏控件时触发

layout

Description:
  • 布局控件时触发

remove

Description:
  • 移除控件时触发(调用 remove() 时,控件 DOM 被销毁之前触发;可用于清理外部资源 / 解绑全局事件)

render

Description:
  • 渲染控件时触发

show

Description:
  • 显示控件时触发