$.udb.isCommitted()
note
This article is about the isCommitted() function of the $.udb object.
$.udb.isCommitted()
Checks for uncommitted manipulations, i.e. manipulations that have not committed to the database.
Returns a boolean.
Syntax
$.udb.isCommitted( *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.isCommitted()) {
//alert the user for uncommitted manipulations
}