projects/wms-framework/src/lib/baseframework/IDataErrorInfo.ts
Represents a Command that can be executed.
Properties |
Methods |
getItem | ||||||
getItem(columnName?: string)
|
||||||
Gets a name and describes any validation errors
Parameters :
Returns :
string
{string} the validation error text. |
Error |
Error:
|
Type : string
|
Error message |
export interface IDataErrorInfo {
/**
* Gets a name and describes any validation errors
*
* @param {*} [parameter]
* @return {*} {string} the validation error text.
* @memberof IDataErrorInfo
*/
getItem(columnName?: string): string;
/**
* Error message
*
* @type {string}
* @memberof IUntypedDictionaryEnumerator
*/
Error: string;
}