aikau

Alfresco - Aikau Custom Action

为君一笑 提交于 2020-04-17 21:35:21
问题 I want add custom action in alfresco aikau search page. I have created extension module. <extension> <modules> <module> <id>Custom Action In Search Result Page</id> <auto-deploy>true</auto-deploy> <version>1.0</version> <customizations> <customization> <targetPackageRoot>org.alfresco.share.pages.faceted-search </targetPackageRoot> <sourcePackageRoot>com.custom.faceted-search</sourcePackageRoot> </customization> </customizations> </module> <module> <id>Tutorial widgets</id> <version>1.0<

Alfresco - Aikau Custom Action

旧街凉风 提交于 2020-04-17 21:35:05
问题 I want add custom action in alfresco aikau search page. I have created extension module. <extension> <modules> <module> <id>Custom Action In Search Result Page</id> <auto-deploy>true</auto-deploy> <version>1.0</version> <customizations> <customization> <targetPackageRoot>org.alfresco.share.pages.faceted-search </targetPackageRoot> <sourcePackageRoot>com.custom.faceted-search</sourcePackageRoot> </customization> </customizations> </module> <module> <id>Tutorial widgets</id> <version>1.0<

Alfresco - Aikau Custom Action

旧街凉风 提交于 2020-04-17 21:33:32
问题 I want add custom action in alfresco aikau search page. I have created extension module. <extension> <modules> <module> <id>Custom Action In Search Result Page</id> <auto-deploy>true</auto-deploy> <version>1.0</version> <customizations> <customization> <targetPackageRoot>org.alfresco.share.pages.faceted-search </targetPackageRoot> <sourcePackageRoot>com.custom.faceted-search</sourcePackageRoot> </customization> </customizations> </module> <module> <id>Tutorial widgets</id> <version>1.0<

Could anyone provide aikau form example with data loading?

戏子无情 提交于 2019-12-25 09:25:59
问题 Aikau example contains a var button which configured to show popup with form control. As I know every aikau form has a value, which can be used to prepopulate controls, but how to load value from URL? E.g. someone push on the button, it load "somehow" data from URL, stores them into Form value and then populate one field on the form. The key problem is what parameters to use as URL (is it publishPayload.url ?) and what and where a topic should be set for this? I have tried already example

How add list headers to AlfDocumentListView in aikau?

耗尽温柔 提交于 2019-12-25 04:26:07
问题 Consider this example. It has the following lines: var views = [ { name: "alfresco/documentlibrary/views/AlfDocumentListView", config: { widgets: [ { id: "VIEW_ROW", name: "alfresco/documentlibrary/views/layouts/Row", config: { widgets: [ { name: "alfresco/documentlibrary/views/layouts/Cell", config: { widgets: [ { id: "DATA_LIST_TITLE", name: "alfresco/renderers/Property", config: { propertyToRender: "title" } } ] } } ] } } ] } } ]; This show just list of data, but without any headers. What

Aikau fundamentals - payload 101

拈花ヽ惹草 提交于 2019-12-11 00:09:09
问题 I am very new to Alfresco Aikau and I just don't get how payload works. There are many examples where payload is used but I am not making the connection. All the examples I seem to find suggest (to me that is) that the payload is used to define a data list that will be loaded and returned to the widget. But, the data list always seems to be a url and I assume the result from the url is a json object. What if I want to call a webscript that build a json object and returns it back to the widget