Hi Karol, this is exactly what I needed. Thank you so much, I really appreciate it. Cheers, Martin
Hey everyone, I have the following challenge. I'm storing travel expenses in an item list. The expenses could be in various currencies. I'd like to get the exchange rate automatically for each row (because the exchange rate might be different for different dates and currencies). The API GET c
That's the spirit! :)
Hi! Any chance you replace the old (PNG) icons shown in the attachments area with the new (SVG) ones (as in the attached image) and reduce the size from 42px to 32px?
Hi Kamil, Thank you for your reply. We installed the version 9.0 (https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-aspnetcore-9.0.0-windows-hosting-bundle-installer) and the Webcon installer (prerequisites check) was ok with it. We'll try to install the version 8 to see if tha
Hi guys, Did anyone of you ever encounter the HTTP 500.19 - Internal Server Error like the one in the print screen immediately after a fresh installation? Any ideas what could be wrong? Thanks, Martin
Using the SQL tracer, we identified the root of the issue. The queries within the IF statement are returning incorrect results. Specifically, the following query: SELECT COUNT(*) FROM WFElements WHERE WFD_WFDID = {WFD_ID} AND WFD_DTYPEID = {DT:494} returns 0 (zero), even when it shouldn’t.
Hi everyone! After upgrading to version 2025 we noticed that the Advanced settings are not working in the same way as they were in the previous versions. The query that was working just fine before is not doing its work. Does anyone else have the same experience? If this helps, this is the query
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
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
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
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. ;)
Oh, come on, I'm no God. I'm glad I could help, though.
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
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