{% import '@OroUI/macros.html.twig' as UI %}
{{ UI.clientButton({
'dataUrl': path(
'oro_note_create', {
entityClass: oro_class_name(entity, true),
entityId: entity.id
}),
'aCss': 'no-hash',
'iCss': 'fa-comment-o',
'dataId': entity.id,
'label': 'oro.note.action.add'|trans,
'widget': {
'type': 'dialog',
'multiple': false,
'refresh-widget-alias': 'activity-list-widget',
'options': {
'alias': 'note-dialog',
'dialogOptions': {
'title': 'oro.note.action.add'|trans,
'allowMaximize': true,
'allowMinimize': true,
'dblclick': 'maximize',
'maximizedHeightDecreaseBy': 'minimize-bar',
'width': 1000,
'minWidth': 'expanded'
}
}
}
}) }}