-
Recently active
I tried to add an!integer Field but it delete zeros at the beginning so I want a condition or a validation for this case
I am trying to develop a component that searches on multiple records from the same box, I am analyzing the "Record Picker Component" from the documentation it does not allow you to manage multiple records at the same time, has anyone been able to work around the limit?
I am getting a broken process if a user is entering phone number like 123 4567890. So I want to add a validation that when user enter any space between the phone number, the field should not accept the value and ask user to enter telephone number without any space
Even though there is no code changes , I am getting an error when shifting to designer mode from Expression mode. Could not display interface. Please check definition and inputs. Interface Definition: Expression evaluation error at function a!fileUploadField [line 78]:In Designer mode:Why this is happening? and how to stop it?a!fileUploadField( label: "Upload An Image :", labelPosition: "ABOVE", target: cons!CS_DOCUMENT_FOLDER, fileNames: fv!files.name: local!registratioNo, fileDescriptions: "This is the uploaded file for the vehicle : " & local!registratioNo, maxSelections: 1, value: local!file, saveInto: { local!file, a!save(ri!Vehicle.UploadedFile, save!value) }, required: if((local!required), tr
a!formLayout( label: "", contents: { a!sectionLayout( contents: { a!boxLayout( label: "", contents: { a!richTextDisplayField( labelPosition: "COLLAPSED", value: { a!richTextItem( text: { "Q1. What is the capital of India?" }, size: "LARGE", style: { "STRONG" } ) }, align: "LEFT" ) }, style: "STANDARD", marginBelow: "STANDARD" ) } ), a!sectionLayout( label: "", contents: { a!cardLayout( contents: { a!cardLayout( contents: { a!sideBySideLayout( items: { a!sideBySideItem( item: a!radioButtonField( label: "", labelPosition: "COLLAPSED", choiceLabels: { "Mumbai", "Bengaluru" }, choiceValues: { True(), false() }, saveInto: {}, choiceLayout: "STACKED", choiceStyle: "CARDS", validations: {} ) ), a!sideBySideItem( item: a!radioButtonField( label: "", labelPosition: "ABOVE", choiceLabels: { "New Delhi", "
how can I get my button to return to the first screen, if I create a local variable with name local!currentStep: 1, a!buttonArrayLayout( buttons: { a!buttonWidget( label: "Atras", size: "SMALL", width: "FILL", style: "NORMAL", value: local!currentStep - 1, saveInto: local!currentStep, showWhen: or( local!currentStep = {1,3} ) ) }, align: "START" )
Is there any way to freeze a header at the top of a UI? I was hoping that a!headerContentLayout would support this functionality, but as far as I can tell it does not
We would like to use in our application custom styled icons (i.e. add new icons). Possible ?
Hi, Can someone suggest any good article or video tutorial where I can learn how to save the interface form data using CDT and Process Models. Thank in advance.
Hi, How can I use an OR condition inside the validation. Basically, I would like to post a message if the age is less than 1 or greater than 100 a!integerField( label: "Age", labelPosition: "ABOVE", value: ri!employee2.age, saveInto: ri!employee2.age, refreshAfter: "UNFOCUS", validations: if( ri!employee2.age < 1 |or , "You must enter proper age", "" )
Hello everyone! Subject: In our case we have link styled richTextItem which (on click/press) start process by startProcessLink() in new tab. Problem: There are no visual representation or effect after pressing link and process need cca 10-15 sec to open in new tab which is normal but Users are impatient and press link again and again causing multiple start of same process. Question: Is there a way to disable link or hide richTextItem or on any other way, visually (at least) show that link is pressed already? P.S. It will be most useful that links has same feature like Buttons (show progress on press) since one can’t start process from button. Thank you in advance.
Hello, I want to do a page with multiple forms, to write to multiple DSE's. I want to, for each DSE, have an Interface with a form, to edit it and save.And have another Interface to integrate the others (with the forms).I don't know how can I achieve that.Thanks, David
Hi guys, In editable grid i have two fields one is scheduled date and one is Assignee. Condition: Scheduled date is mandatory field if the user add any name in assignee field. If there is no name in assignee field, the system should allow to continue without scheduled date. I tried this below code but its not working fine 1. When we add assignee and scheduled date its working. 2. When we add assignee without scheduled date i am getting a warning message. 3. When we add scheduled date without assignee its showing nothing, but i want to get display error message as "The scheduled date is mandatory if assignee is populated. Code: required: if( not(rule!AF_RULE_General_isBlank(ri!riskAssessmentData.assignee)), true, false), validations: { if( and(not(rule!AF_RULE_General_isBlank(ri!riskAssessmentData.assignee)),rule!AF_RULE_General_isBlank(ri!riskAssessmentData.scheduledDate)), "The Scheduled date is mandatory if there is an assignee", {} ) }
i made a expression rule (Name of Expression rule -> CD_Dict) of dictionary: { Sunday:{0,6,13}, Monday:{0,7,14}, Tuesday:{1,8,15}, Wednesday:{2,9,16} } i made another interface in which i selected "Read-Only" grid and pass that CD_Dict(Dictionary Expression) as a data in read_only grid. now my output look like this -> but i want these values in separate-separate rows. All the values are showing in single cell i want output like this: Sunday Monday Tuesday Wednesday 0 0 1 2 6 7 8 9 13 14 &n
Client has requirement as below if upload of file is failed because of some validation then that circle of file upload should be red of half circle can we meet this type of requirement
Hi, How can we save the values to the database when a n-number of rows are added to editable grid. I have table(table1): Now I have each row values saved to the rule input. In the process model, when I write to a database only a single row is added. What can I do to add all the rows.
Hi Community, Just wondering if there is a way to download a document automatically upon loading the user interface. Please share your thoughts. Thanks, Arun
how can we change the language of the interface in appian, when i had a gulf customer as a user
How to get the data from GraphQL to the Appian Interface. Please suggest different methods.
Hello everyone! Im just toggling with the documentViewerField function and would like to know how to hide the documentViewerField once the user clicks on the dynamic field [that opens up the field]. I've tried toggling with the code for a while but was not successful. Any advice, tips, guidance is welcomed [emoticon:c4563cd7d5574777a71c318021cbbcc8] Code: a!localVariables( local!documents: {47149, 47150}, local!link, a!forEach( items: local!documents, expression: { a!linkField( links: a!dynamicLink( label: "Click Here to View File: " & document(documentId: fv!item, propertiy: "name"), value: fv!item, saveInto: local!link ) ), a!documentViewerField( document: fv!item, showWhen: fv!item = local!link ) } ) )
Hi team, I have a interface (page A) which includes user filters and grid interface . I selected 'created' status for filtering the grid. When I click on one of the filtered record, page B is coming. Now I go to the back page ( page A) using back button it also working but filtered data is disappeared (status 'created' is disappeared) Thanks, Kiran
How can we combine two interfaces which contains two form layouts of different datatypes. Can we create a form of combination of two different table. And when we fill the form can we add values to the database?
Is it possible in appian to move the uploaded documents in the bottom? instead on the Above.
I am looking for ways to change Appian Cloud to Dark Mode in Chrome. I know Appian does not provide this functionality, I am looking for browser extensions or other workarounds for this requirement.
Hello Community, I'm looking around to see if it is possible to have my own login system, this is because I'm creating an application that is supposed to show reports with confidential information from the company. Now, I know sites are supposed to be public, but I want to somehow show the information to only authorized users through a login system that I create to let users see the information only if they are authorized, but I have not found any information and it seems like it is not possible. Has someone been able to create their own login system somehow? If not, do you know if it is possible to create private applications where I can get that achieved? Thanks in advanced for your time and support. Any insight will be appreciated.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.