Jimmy.Chai
4 months ago
23 changed files with 202 additions and 51 deletions
@ -0,0 +1,19 @@
|
||||
import { Widget } from '../../core/widget'; |
||||
|
||||
export declare class MultiSelectCheckSelectedSwitcher extends Widget { |
||||
static xtype: string; |
||||
static EVENT_TRIGGER_CHANGE: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
static EVENT_AFTER_HIDEVIEW: string; |
||||
|
||||
props: { |
||||
itemsCreator?: Function; |
||||
valueFormatter?: Function; |
||||
}; |
||||
|
||||
adjustView(): void; |
||||
|
||||
hideView(): void; |
||||
|
||||
getView(): Widget; |
||||
} |
@ -1,8 +1,17 @@
|
||||
import { PopupView } from "../../base/layer/layer.popup"; |
||||
import { Widget } from "../../core/widget"; |
||||
|
||||
export declare class TextValueDownListCombo extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
|
||||
props: { |
||||
container?: string; |
||||
popup?: any; |
||||
}; |
||||
|
||||
getValue<T>(): [T]; |
||||
|
||||
getPopup(): PopupView; |
||||
} |
||||
|
Loading…
Reference in new issue