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

search results

for form

(...) Hello folks, how is it possible to hide/show the Attachments form Field they way every other form field can be hidden/shown via the style and behaviour Tab. I want to be able to show the Attachments field when some dropdown item is selected. Works perfectly for every other field (as shown in image) but I cannot target the Attachments field Where and how can I even configure the Attachments field? (...)

(...) Hi Fabian, unfortunately, there are some elements on the form which are not available, but there are workarounds. :) In your case I would create a form rule of type JavaScript mode. Add a parameter, and write some JavaScript to hide/ show the attachment element. Afterwards you can use this form rule in your current one and you should be good. :) Here's an example of the same approach though the Java (...)

(...) Might this be connected with the implementation of the following functionality: Added the ability to send and display unformatted text (without HTML tags) entered in the ‘Multiple lines of text’ form field e.g. in the case of sending e-mail notifications and generating Word and Excel files. BR Aleš

Thanks for the insights again! I tried that out, but did not find out how to target the Attachment field as Parameter. What could I give the "HideField()" function? The GUID of the attachments field? But where would I get it from?

Hi Fabian, You need to write some custom javascript to do that. Based on Daniel's function from the linked post, something like this should work: setTimeout(function(){ var attachmentsDiv = $('[data-type="SystemAttachments"]'); attachmentsDiv.hide(); },250); but I noticed that the function does not work when I use it as a rule executed on page load. My guess is that maybe the attachments sectio

(...) t to be used in the value change: if (#{BRP:33}# == 1) { $("[data-type='SystemAttachments']").show(); } else { $("[data-type='SystemAttachments']").hide(); } JavaScript to be used in OnLoad (form behavior tab): window.ccls = window.ccls || {}; ccls.showHideAttachments = {}; ccls.showHideAttachments.Timeout = 0; ccls.showHideAttachments.TimeoutMax = 4; ccls.showHideAttachments .execute = fu (...)

The issue with adding an attachment to a new element in the sharepoint interface will be fixed in the next published version.

Thank you both, this was incredibly helpful and worked! Best regards Fabian PS: Is there a place where webcons JS functions are documented? Could not find something after some google search, and being able to view/read through them would be incredibly helpful!

(...) Hi Fabian, I'm not aware of a dedicated documentation but I found two knowledge base entries: https://community.webcon.com/posts/post/javascript-basic-functions-in-the-html-form-fields/163 https://community.webcon.com/posts/post/javascript-functions-in-the-html-form-fields-part-3/179 The JavaScript rules themselves are, in my opinion, superseded by the low code form rules. These are easier to use, h (...)

(...) Dear WebCon Team, in our view, we found following misbehaviour of the form field typ - Floating Point. If you try to set this field with a periodical fraction like (14/15)*100 = 93,333333... you will get an error message. In our oppinion this is a misbehaviour, because the field itself should handle such an "exception". And it is hard to find ;) A possible solution is to wrap the "Round" function ar (...)

(...) Hello, I wonder if this is a bug or feature... I have a form field named "Dział" ("Department") and it is the type of "Choice tree". When I try to create a report with forms containing this field, the field is accessible depending on report source type... when the report source type is "SQL Source" - the field is accessible when I choose "SearchIndex source" - it disappears from the list of accessib (...)

(...) Hi there, I have observed the problem. During the transfer between DEV-TEST-PROD environments there is an uncontrolled change in the order of formal parameters in the form rules. This results wrong assigning the actual parameters when the rule was called after import.

Daniel mentioned this kind of problem first: https://community.webcon.com/forum/thread/960?messageid=960 We have this problem with version 2021.1.4.55 on our stand-alone server too. 2 Parameters, both mixed up. As in Daniels post mentioned, WEBCON will fix this in the next version. Nice weekend, Björn P.S.: We are trying to understand an other problem and will post it, when we could describe i

(...) Hi, we have the same issue. We are using SP 2016, integrated Webcon and Webcon forms. Kind regards, Klaus

I have the same error in version: 2021.1.4.55 When user have permissions to specific company then it is not possible to add new attachement to new document. When I add him permission to "General" tab it works correctly - but its not a solution. We works in stand alone version. I enclose picture with details Could you tell me when new version will be available? Kind regards, Damian

Yes, the problem also exists in the StandAlone version. The version with the fix will be released next week.

(...) Hi everyone, I had the requirement to provide a drop down which can be used to select a form type. Since I'm a fan of doing things the right way I've chosen to provide a multilingual label. Example: TMeasure$$de$$Maßnahme$$en$$Measure I'm not sure whether I'm missed something because of the late hour, but I didn't found a better option than creating this on my own. If someone else has a similar need (...)

Two other samples where you only need to change the outer where condition. Workflow name select WF_GUID as Id , WF_Name+isnull(( select distinct '$$', substring(LAN_Name,1,2) +'$$'+TRANS_Name FROM WorkFlows as innerWorkFlows join Translates on TRANS_ELEMID = WF_ID and TRANS_OBJID = 3 join TranslateLanguages on TRANS_LANID = LAN_ID where innerWorkFlows .WF_ID = outerWorkFlows.WF_ID

(...) Hi everyone, after creating an application i right-clicked on it and chose "show application in process". Unfortunately, only a blank page is displayed instead of the Standard form. What could be the reason? Does anybody have an idea how to fix this? PS: 1) i noticed, that i unfortunately took the root path as Portal URL - because the installer proposed it and i unfortunately did not change it ( (...)

(...) Hi everyone, experienced BPS Designers will remember a time when form rules didn't have an 'Edit mode', where you could select JavaScript or form rule. You only had JavaScript. :) In the meantime the 'form rule' option has been added an the JavaScript mode gets little attention, if at all. But how can you do some of the 'form rule' actions with pure JavaScript? If you click on the "Show" button in t (...)