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