📄 rule.js
字号:
function uiFormGuide_Rule(widgetGroup, expectedValue) { this._super(); this.__widgetGroup = widgetGroup; this.__expectedValue = expectedValue;}uiFormGuide_Rule = uiUtil_Object.declareClass(uiFormGuide_Rule, uiUtil_Object);uiFormGuide_Rule.prototype._holds = function() { if (this.__expectedValue == null) { return (this.__widgetGroup.getValues().length == 0); } return this.__widgetGroup.hasValue(this.__expectedValue);};uiFormGuide_Rule.prototype.getWidgetGroup = function() { return this.__widgetGroup;};uiFormGuide_Rule.prototype.getExpectedValue = function() { return this.__expectedValue;};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -