I am started working on positional parser talend 6.4.1. As i am gone read data from dynamic schema so i need tSetDynamicSchema component to proceed further. But i cant see tSetDynamicSchema component in the Tool. Can anyone help me to add this component to tool?
Unfortunately tSetDynamicSchema is only available in Talend subscription (entreprise) version. in Talend Open Studio, you need to define your schema at design time.
Related
I am trying to use WinAppDriver to automate reading/writing to a SyncFusion control: GridGroupingCOntrol.
The UIRecorder tool is not able to extract xpaths for elements inside the control, nor can winappdriver see them. Does anyone know a workaround or how to extract data from the cells of such a control?
We have checked the reported query ”To automate read/write on syncfusion controls” at our end. As per the current implementation, we do not have the support to automate read/write using WinAppDriver. For this query already we have logged a feature request. We will implement this feature in any of our upcoming releases.
I'm using the quarkus-logging-json artifact. Is there a way to add custom fields in the json logs?
There isn't such a capability. You are welcome to open an issue on Github with the details of what you are trying to do.
I create a site with AEM (Adobe Experience Manager). I have a page type as property-page. The property-page have a field type "Number of event in a page". I want to modify the number of event for all property page.
How to do that?
Thank you & kind regards,
There is no mass-update feature in AEM. Ask your developers for support. They either write you a little tool. Or they could generate a lot of curl-requests based on a query. Another option would be the AEM Groovy Console (https://github.com/OlsonDigital/aem-groovy-console). There you or your developers could write a script.
Finally you can do it one by one manually. Take a look into crx/de, which might be a little bit faster.
If you want to bulk update the page property you may use OTB Bulk Editor feature. Here is a video explaining how to use this.
There is a similar ACS tool for updating sling:resourceType property. You can extend and customize this tool if not happy with OTB feature.
so I have this simple question that I would love to get anwserd.
I am new to BPM an Alfresco Activiti and I am workng on with the trial version of Alfresco Activiti to create a sample project for our company.
I decided to work with the Step editor to se what it can do and if it's as powerfull as a normal BPMN 2.0 editor.
Now I am working on a form where one user would need to select the user for the next task. I was wondering if it's possible to use the single select component to display all the users on the server from which the asignee for the next task could be selected. How can this be done?
I know it is not the bes pracitce to show all the users on the server but this is a test project and your help would be really appreciated.
If any more info is required I will gladly edit the post.
Thnak you.
There is a user picker form control in there, that allows searching the whole system. See the third entry:
you can create a dropdown whose options are populated from a rest call which is provided below.
GET api/enterprise/admin/users
This will return list of all users available in JSON format.
Hope it helped.
Management has given me a task to add a link(ex. under "People" link) and display a table w/ data from a DB(MongoDB). The user will be then able to insert/update the table and have it saved to the DB.
Using HTML/CSS/JS I am capable to doing it but I don't know how to modify jenkins to do so. I've looked for plugins like "Simple Theme" but from what I saw it only updates CSS and JS of Jenkins UI. I'm new to Jenkins and really have not idea where to start.
Any suggestions?
Thanks!
To customize a jenkins plugin of your own is a graceful solution but complicated for someone who is new to jenkins.
create a new jenkins-plugin project and need to be familiar with java/maven before.
create a java subclass which implements hudson.model.RootAction.
create index.jelly which display the table data from the DB and need to learn jelly before.