Threaded View
-
8 Feb 2013 4:11 AM #1
Comment Typo In FormPanelHelper
Comment Typo In FormPanelHelper
Required Information
Version(s) of Ext GWT
3.0.1 Release Candidate
Virtual Machine
No
Description
PHP Code:/**
* Returns true if the form is invalid.
*
* @return true if all fields are valid
*/
public static boolean isValid(HasWidgets container) {
return isValid(container, false);
}
Fix
PHP Code:/**
* Returns true if the form is valid.
*
* @return true if all fields are valid
*/
public static boolean isValid(HasWidgets container) {
return isValid(container, false);
}
Success! Looks like we've fixed this one. According to our records the fix was applied for
EXTGWT-2816
in
3.0.5.


Reply With Quote