How can I add the Employee image to my printable template? I add the "Photo" field of the Contact associated to Employee to template but it show an Guid instead of the Photo.
Is that Select query from SysAdminUnitInRole still available ? I got an error :
ErrorCode: "SecurityException", message: "Current user does not have permissions for the "SysAdminUnitInRole" object", stackTrace: undefined, errors: Array(0)
I'm afraid it's not completely clear from your description what's wrong. We don't recall the cases when httpclient was used in the ScriptTask but it should work there.
Make sure the necessary namespaces are added to the usings and check it again. In case you face the same difficulties, please provide us with the detailed description of the actions you take and the results you get.
I was wondering if there are working projects of the different public integration methods out there in the community before I reinvent the wheel; besides what is in the development manual, like on GitHub or on this site. I'm looking for actual Visual Studio projects or solutions; boilerplate if you will. I'm only interested in integration, not BPM customization.
Second question, where do you find the latest Terrasoft assemblies, if you are working with the cloud version only, not on premise.
Please note that you will not be able to open bpm'online solutinon in VS, build it and run. Bpm'online is not OpenSource. However, on-side installation allows attaching visual studio and debugging.
I want to add a column with a link, to set URL of that link I need to get the value of another column hidden in the grid, How could I do this? I do not want to show the column because it takes up a lot of space. I overwrote the method addColumnLink but the line "this.get("someColumn") does not work if the column is hidden. In this case, the column hidden is "UsrRutaArchivo"
You can call initQueryColumns function in your section schema, so to load all columns. In the function, call addAllColumns you have overridden. In this case, you will be able to access not displayed column in the grid by "this.get("Column"); Please see the example below:
Need your help on how can we insert bulk Contacts. I have written the below code. But need your suggestions to know is there any way that we can insert all the records with a single statement instead of inserting one by one inside loop? I have written this code inside "Script Task".