This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package example.dto; | |
| import lombok.Data; | |
| @Data | |
| public class Contact { | |
| private Long id; | |
| private String firstName; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <#include "/org/alfresco/components/form/controls/common/utils.inc.ftl" /> | |
| <#if field.control.params.optionSeparator??> | |
| <#assign optionSeparator=field.control.params.optionSeparator> | |
| <#else> | |
| <#assign optionSeparator=","> | |
| </#if> | |
| <#if field.control.params.labelSeparator??> | |
| <#assign labelSeparator=field.control.params.labelSeparator> | |
| <#else> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <button class="inboxes-item-button inboxes-item-button-approve" | |
| data-dojo-attach-event="click:approveAction">${approveLabel} | |
| </button> | |
| <button class="inboxes-item-button inboxes-item-button-reject" | |
| data-dojo-attach-event="click:rejectAction">${rejectLabel} | |
| </button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| define([ | |
| "dojo/_base/declare", | |
| "dojo/_base/lang", | |
| "dojo/date/locale", | |
| "./Item", | |
| "softwareloop/cmis/cmis" | |
| ], function (declare, lang, locale, Item, cmis) { | |
| return declare([Item], { | |
| composeLines: function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="inboxes-inbox" | |
| data-dojo-attach-event="click:clickHandler"> | |
| <div class="inboxes-inbox-counter" data-dojo-attach-point="counterNode"> </div> | |
| <div class="inboxes-inbox-text"> | |
| <img src="${absoluteIconPath}" style="vertical-align: bottom"/> | |
| <span class="inboxes-inbox-title">${title}</span> | |
| </div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <inboxes> | |
| <group id="my-documents"> | |
| <inbox id="drafts" iconClass="fa fa-dashboard"> | |
| <query><![CDATA[ | |
| SELECT d.*, t.* | |
| FROM cmis:document AS d | |
| JOIN cm:titled AS t on d.cmis:objectId = t.cmis:objectId | |
| WHERE contains(d, 'PATH:"/app:company_home/st:sites/cm:swsdp/cm:documentLibrary/cm:Meeting_x0020_Notes/*"') | |
| ]]></query> | |
| </inbox> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <inboxes> | |
| <group id="CMIS examples"> | |
| <inbox id="All dossiers" iconClass="foundicon-folder"> | |
| <query><![CDATA[ | |
| SELECT * | |
| FROM owd:dossier AS d | |
| ]]></query> | |
| </inbox> | |
| <inbox id="Pictures" iconClass="foundicon-address-book"> | |
| <query><![CDATA[ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <query><![CDATA[ | |
| SELECT d.*, t.* | |
| FROM cmis:document AS d | |
| JOIN cm:titled AS t on d.cmis:objectId = t.cmis:objectId | |
| WHERE contains(d, 'PATH:"/app:company_home/st:sites/cm:swsdp/cm:documentLibrary/cm:Meeting_x0020_Notes/*"') | |
| ]]></query> |