forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~GUYI/fineui:master to master * commit '8a266d2bd22fb2c9c7361cd59c3d8f011986cebd': KERNEL-4058 refactor: fineui中添加DownListCombo控件的声明 KERNEL-4058 refactor: fineui中添加DownListCombo控件的声明 Revert "KERNEL-4058 refactor: fineui中添加DownListCombo控件的声明" Revert "KERNEL-4058 refactor: fineui中添加控件的声明" Revert "KERNEL-4058 refactor: fineui中添加DownListCombo控件的声明" KERNEL-4058 refactor: fineui中添加DownListCombo控件的声明 KERNEL-4058 refactor: fineui中添加控件的声明 KERNEL-4058 refactor: fineui中添加DownListCombo控件的声明master
Guyi
5 years ago
2 changed files with 19 additions and 2 deletions
@ -0,0 +1,15 @@
|
||||
import { _Widget } from "../../core/widget"; |
||||
|
||||
export interface _DownListCombo extends _Widget { |
||||
hideView: () => void; |
||||
|
||||
showView: (e?: any) => void; |
||||
|
||||
populate: (items?: any) => void; |
||||
} |
||||
|
||||
export interface _DownListComboStatic { |
||||
EVENT_CHANGE: string; |
||||
EVENT_SON_VALUE_CHANGE: string; |
||||
EVENT_BEFORE_POPUPVIEW: string; |
||||
} |
Loading…
Reference in new issue