// Audit Log button
auditLogButton = new Button( Constants.INSTANCE.DecisionTableAuditLog(),
new ClickHandler() {
public void onClick(ClickEvent event) {
if ( dtable != null ) {
AuditLog log = new AuditLog( dtable.model,
userSecurityContext );
log.show();
}
}
} );
auditLogButton.setEnabled( !isReadOnly );
panel.add( auditLogButton );