Browse Source
Merge in VISUAL/fineui from ~TELLER/fineui:bugfix to master * commit '248602dd61f502d068bfdc9fde2c5e39a12ec172': refactor: 补充描述es6
Teller
4 years ago
5 changed files with 89 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||||||
|
import { Widget } from "../../core/widget"; |
||||||
|
|
||||||
|
export declare class MultiLayerSelectTreeCombo extends Widget { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_SEARCHING: string; |
||||||
|
static EVENT_BLUR: string; |
||||||
|
static EVENT_FOCUS: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
|
||||||
|
setValue(v: string[] | string): void; |
||||||
|
|
||||||
|
getValue(): string[]; |
||||||
|
|
||||||
|
populate<T>(items: T[]): void; |
||||||
|
} |
@ -0,0 +1,16 @@ |
|||||||
|
import { Widget } from "../../core/widget"; |
||||||
|
|
||||||
|
export declare class MultiLayerSingleTreeCombo extends Widget { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_SEARCHING: string; |
||||||
|
static EVENT_BLUR: string; |
||||||
|
static EVENT_FOCUS: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
|
||||||
|
setValue(v: string[] | string): void; |
||||||
|
|
||||||
|
getValue(): string[]; |
||||||
|
|
||||||
|
populate<T>(items: T[]): void |
||||||
|
} |
@ -0,0 +1,23 @@ |
|||||||
|
import { Single } from "../../base/single/single"; |
||||||
|
import { TreeValue } from "../../base/tree/ztree/treeview"; |
||||||
|
|
||||||
|
export declare class MultiTreeInsertCombo extends Single { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_FOCUS: string; |
||||||
|
static EVENT_BLUR: string; |
||||||
|
static EVENT_STOP: string; |
||||||
|
static EVENT_CLICK_ITEM: string; |
||||||
|
static EVENT_SEARCHING: string; |
||||||
|
static EVENT_CONFIRM: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
|
||||||
|
showView(): void; |
||||||
|
|
||||||
|
hideView(): void; |
||||||
|
|
||||||
|
setValue(v: TreeValue): void; |
||||||
|
|
||||||
|
getValue(): TreeValue; |
||||||
|
|
||||||
|
populate(): void; |
||||||
|
} |
@ -0,0 +1,22 @@ |
|||||||
|
import { Single } from "../../base/single/single"; |
||||||
|
|
||||||
|
export declare class MultiTreeListCombo extends Single { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_FOCUS: string; |
||||||
|
static EVENT_BLUR: string; |
||||||
|
static EVENT_STOP: string; |
||||||
|
static EVENT_CLICK_ITEM: string; |
||||||
|
static EVENT_SEARCHING: string; |
||||||
|
static EVENT_CONFIRM: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
|
||||||
|
showView(): void; |
||||||
|
|
||||||
|
hideView(): void; |
||||||
|
|
||||||
|
setValue(v: string[]): void; |
||||||
|
|
||||||
|
getValue(): string[]; |
||||||
|
|
||||||
|
populate(): void; |
||||||
|
} |
Loading…
Reference in new issue