$.udb.isTransactionChecked()
note
This article is about the isTransactionChecked() function of the $.udb object.
$.udb.isTransactionChecked()
Checks for unchecked manipulations, i.e. manipulations that have not been processed by the server by a .checkData() function call.
Returns a boolean.
Syntax
$.udb.isTransactionChecked( *context* )
The optional context indicates the frame context for which the function is called. If you are displaying pages in a Frame Control that has an id property value of 'ApplicationFrame', then the context for those pages is 'ApplicationFrame'.
Example
if (!$.udb.isTransactionChecked()) {
//alert the user for unchecked manipulations
}