WELCOME TO THE COMMUNITY
find what you are looking for or ask a new question

Martin Meze (Freelancer)

MVP

Based on your description you're looking for the out-of-the-box Datarow field type, aren't you?

Item list custom button
26.04.2024 11:49

Hi Maria, Please check the attached images and see if that helps. Come back with additional questions if you will have any. The javascript functions can be inserted in a HTML field, enclosed in the tag. Best regards, Martin

SOLVED - Importing XML files
26.04.2024 11:33

Hi Karol, Thank you so much. I had the wrong mode selected and it didn't occur to me that this might be the issue. Solved. :) Cheers, Martin

SOLVED - Importing XML files
26.04.2024 09:51

Hello everyone! Does anyone know if there is a way to start a workflow instance based on xml file stored in a folder on the disk? Unfortunately the HotFolder functionality allows starting workflows only for a few supported file types. Any chance to workaround this limitation? Thank you, Marti

Tile report change
22.03.2024 12:54

Hey mate. The code won't work because the [href="/db/1/app/10/dashboards/system"] is a css selector to target the element that has this href tag, not to apply the styling based on the application URL. ;)

Tile report change
22.03.2024 12:52

Oh, come on, I'm no God. I'm glad I could help, though.

Tile report change
21.03.2024 23:21

Hi Marcin, Yes, you can change the fields that are shown in this view at process level in the tab "Compact view". There is a maximum of 6 fields available. You could target the specific row with the below css which you can insert in the global css, but this will then be applied across all app

Multiple lines of text Rich
11.03.2024 13:54

The reason is CSS. Please note the difference in the two attached images. One is with the default settings. In the other I added the "white-space: break-spaces;".

After some more exploring, I don't think this (not confirmed translations in the translator tool) is the issue. I tried downloading the German language file which is almost 100% complete and after uploading it to Designer Studio, nothing is showing in the frontend in German (it's all still in Englis

Ah... OK, got it. Is there a way to workaround that, maybe manually translating a file and uploading it?

Hello! I'm trying to import Slovene language pack obtained from the https://bpstranslator.webcon.com/ What I did: 1. Added a new record to the Interface language packs in System settings: sl-SI (Slovene); 2. Uploaded the .zip file downloaded from the BPS translator tool mentioned above; 3.

Hello Sandra, I think you need to use the UNPIVOT. Something along these lines should do: SELECT AttributeName, AttributeValue FROM ( SELECT WFD_AttText1, WFD_AttText2 FROM WFElements ) AS Source UNPIVOT ( AttributeValue FOR AttributeName IN (WFD_AttText1, WFD_AttText2) ) AS

Hi everyone, Does anyone know if it is possible to move the whole folder "C:\Program Files\WEBCON\WEBCON BPS Search Server" to a different disk? What are the steps needed to do that? Thanks, M.

Hi Adam, I don't have a solution. Rather an idea. Did you check the space on the disk when the issue occured? Was there enough space? M.

Hi Paweł, you can also have a look at this thread https://community.webcon.com/forum/thread/3293 and see if the information provided in the answers helps.

Very good idea. I would add one more enhancement: to be able to insert dates in other formats as well. E.g.: if you write 0112 and pressing tab (or enter) it would automatically switch to 01/12/(current year).

Tooltips on html buttons
04.10.2023 10:26

Hi Maksymilian, Thank you for your response. Although I didn't implement it your way, it got me into the right direction and at the end I opted for some custom JS and CSS. Best regards, Martin

Tooltips on html buttons
03.10.2023 17:43

Hello, Does anyone know if there's a way of adding a tooltip to custom buttons one adds to the form? I have an item list with a datarow column. Inside this column I'm creating a button like so: Basically, I'm replicating the buttons from the action column. I kno

Report based on solr
27.09.2023 07:16

Hi Radoslaw, Although it's not the best solution from a performance point of view, you can add grouped data from an item list with the calculated column on a regular report. I didn't try it yet on a SOLR report but I suspect it should work the same. Here is the SQL for the calculated column:

No way! That did it. I would have never thought of that. Thank you!!!