Browse Source
Merge in VISUAL/fineui from ~CLAIRE.TANG/fineui:master to master * commit '6434b351efafbe94bc01d4d382c527482bc634e5': BI-95364 fix:提供checkvalid事件es6
Claire.Tang
3 years ago
3 changed files with 26 additions and 0 deletions
@ -0,0 +1,15 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
|
||||
export declare class Form extends Widget { |
||||
static xtype: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
|
||||
isAllValid(): boolean; |
||||
|
||||
validateWithNoTip(): boolean[]; |
||||
|
||||
validate(): boolean[]; |
||||
|
||||
getValue<T>(): T[]; |
||||
} |
Loading…
Reference in new issue