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

search results

for validation

(...) User registers new form (parent), to that form, he needs to register additional forms (children). It's 2 level tree childrens are leafs, they can't be parents. On those children forms, there are validation rules, which depends on data from the parent form, and a path [Validate] which checks for required fields. To make sure that children forms are filled properly - when I'm moving the parent form to f (...)

(...) ver, there are situations, where we like to only allow certain content types, e.g. pdf's, that are a subset of the globally allowed attachments. Currently, the only way to restrict is the usage of validation rules. For usability reasons, it would be much better, to be able to restrict the allowed document types. With a little bit of javascript it is possible to set the accept attribute of the input (...)

(...) de in 2023.1.2 but in the new version: 1. the change function in the plugin triggers controller.change 2. this calls validateCCValueModel 3. Since the hasCustomModel is undefined 4. The default validation is applied and this validation fails. In the "past" I returned a string and now it seems that an Object is expected with a "comments" array. I see no option to set "hasCustomModel" to true. The (...)

(...) Hi I have a question. I want to return all weekend days in SQL for my form validation . This is my SQL Code that returns these days, but only for the current month: WITH Dates AS ( SELECT CAST(DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE()), 0) AS DATE) AS DateValue UNION ALL SELECT DATEADD(DAY, 1, DateValue) FROM Dates WHERE DATEADD(DAY, 1, DateValue) < DATEADD(MONTH, DATEDIFF(M (...)

(...) Hello there :) I have yet another problem, regarding the form validation . I've attached the rules that I've applied. What I want to do is I want to block the occurence of choosing current day while it's after 9.00 A.M. Otherwise If the day is than Today() then the result is TRUE, which means, you are able to go further. Best Regards, Igor

(...) The reason for this is, that it would prevent errors which may only surface in production. This is the issue what I encountered. A process was tested with a test protocol and transported from validation environment to production. The process worked for a while just fine, than it failed with the error: ** The current transaction cannot be committed and cannot support operations that write to the l (...)

(...) "text" after P.S. Could be nice to add (mention) in help or any other doc. that you can use HTML tags ... I'm using 2022.1.4.404, but probably in 2024 R1 is the same ... In attachments - validation vs "Brake with error "

(...) Hi, I would like to create validation for the input in a column of an item list. I have an item list with two columns (Input, Source). If the Source is "External," I don't want to validate for special characters. I have been using regex on the column, but now I have this condition. One solution I thought of is to create a "for each" loop on the item list and add a validation form... But I would pre (...)

(...) er company. 5. In the data tab, I indicate the collection columns on the basis of which I complete some form fields. 6. The technical paths that I indicate in the subworkflow activation action have validation disabled. 7. On each path that I use in the subworkflow action, I have an automation pattern responsible for copying data from item lists, i.e. I take data from the current report and copy it to the (...)

(...) s not enough. Sometime because of some specific requirements or where we wanted to provide additional options to guide the users through a large form. I also tried and failed creating an "advanced validation dialog". I wanted to display a dialog in which the user had to set some fields. I mainly failed because I couldn't replicate the logic attached to the choose fields and similar. Therefore I would (...)

(...) Hi, I'm just configuring my xx validation action in which I check whether a field value is unique for the given form type. Sometimes I include the business entity and sometimes I ignore it. It would be great, if this could be standard feature. :) Related user voice: Unique value of the item list column https://community.webcon.com/forum/thread/6212/15 Best regards, Daniel *Edit* While (...)

(...) I GET /api/data/v6.0/hightrust/db/1/elements/180 → 200 OK ----------------- *Exception from administration tools*: Public Api POST /api/data/v6.0/db/1/elements Status code: 409 Error message: validation error for fields: Field FieldName1 (guid: 43e896d4-1382-4a71-83c7-333f265015e6 id: 399 has invalid value: Value with id: '115' does not exist Field FieldName2 (guid: 8a6d26cc-4d88-40d9-b92d-8095d1 (...)

(...) tains the following errors: error on line 13560 at column 39: Input is not proper UTF-8, indicate encoding ! Bytes: 0x08 0x2E 0x1C 0x2E Below is a rendering of the page up to the first error. validation of the user voice RSS feed fails: https://www.rssboard.org/rss-validator/check.cgi?url=https%3A%2F%2Fcommunity.webcon.com%2Ffeed%2Fuser-voice Would it be please possible to fix this? Kind Rega (...)

(...) nt.AddCommentAsync("Adding comment required for this transition"); ___await manager.MoveDocumentToNextStepAsync(new MoveDocumentToNextStepParams(document, pathId)); } Result (translated by me): "validation Error: Comment is required on path: PATH_NAME" Am I doing something wrong?

(...) g. Anyone got an idea what could be causing this error? EDIT1: Interestingly, when I change the userId in the payload to a non-existent user, the response returns: 409 Conflict { "type": "validation Error", "description": "User zzz@gmail.com does not exist or no tasks were found for this user.", "errorGuid": "d0bdb551-8432-48a9-b011-f7e9cf10fb85" } But when the userId is correct and point (...)

(...) In the past, we had the requirement to force the user to add exactly one document. Of course, this can be done with validation rules. However, it would be perfect, if after reaching the maximum amount of attachments, the buttons to add new documents would be disabled. Just how it is already implemented for a dictionary template element.

(...) tuation. Is there any way to use a “time only” picker in an item list column, or to open the date/time picker directly in the "time part"? Alternatively, I could use a text attribute with regex validation , or choice lists (one for hours and one for minutes), but neither feels elegant. How would you approach this situation? Any advice would be appreciated.

(...) f I run this automation in a Timer-Action of a system-Step I get this results (this also happens if I run the automation on path-action) last operation status success: False last operation status validation error:True error exec. time exceded: False error msg: Invoke REST Web service - Request Url: https://app1.hypo.web/volt/resttools.nsf/download.xsp Response Code: Exceptions: Insufficient attachment (...)

(...) I need to call a REST API from a WEBCON form and write the returned values back into form fields. The REST API performs several validation s on the incoming JSON payload (e.g. date from valid, date to valid, amount valid, etc.). In case of a validation error, the API returns something like: { "state": "error", "error_msg": "Date to must be greater than date from" } Approach 1 – Automation (men (...)

(...) I have form-validation s that work correctly and catches errors correctly. It would be nice if I could sat the HTML-form focus on that particular element that was validated wrong! Any suggestions , I find it hard because form-validation only returns true or false i cant use it afterwards anymore