-
Recently active
a!localVariables( local!items: { a!map(id: 1, value: "a|b"), a!map(id: 6, value: "a|b"), a!map(id: 8, value: "a|b") }, local!sortedData: { a!map(id: 8, value: { "a", "b" }), a!map(id: 2, value: { "a", "b" }), a!map(id: 8, value: { "a", "b" }) }, a!columnsLayout( columns: { a!columnLayout( contents: { a!forEach( local!sortedData, if( mod(fv!index, 2) 0, a!multipleDropdownField( label: "Item" & fv!index, choiceValues: { "a", "b", "c", "d" }, choiceLabels: { "a", "b", "c", "d" }, value: touniformstring(fv!item.value), saveInto: { fv!item.value, a!save( local!sortedData, append( local!sortedData, a!map( id: count(local!sortedData) - 2,
Hello, I have a record that includes a filter search functionality. I want to add a Help Tooltip on the interface to indicate which columns can be searched. I prefer not to use placeholders, as there are multiple columns available for searching. Please suggest an approach.Thanks
I have a use case to not to allow the user to download the pdf document but he should be able to view it.Do we have any possible ways to achieve this with or without the PDF Viewer in Appian?
Hi I am uploading documents while raising request after submitting the request the documents which i uploaded is showing in different order means the doc was not showing according to the order i uploaded there was query rule which was showing documents by extracting from DB the query rule itself returning document details in different order like below there was no sort defined in query rule too kindly provide your thoughts on the same logic in query rule
I have requirement to show a specific page of a document in the document viewer component. Is there a way in Appian to achieve this?
I conducted a test where I copied a tab character from Notepad and pasted it into an Appian text field. Appian recognizes the tab character as a special character rather than treating it as empty spaces. How can I configure or validate this so that Appian treats tab characters as empty spaces? Any insight would be appreciated.
in dropdown i have to show default values then it has only single value if dropdown has multiple choices i can show then value will be null ex: here detail has many values this i have to show as it is no change in this this dropdown has single option so need to show that by default
Hi All, I have a paragraph field (* Required field) in an interface. When I input Enters or Spaces or Tabs only and no other characters it is consider as a value and not firing the validation error. For user it looks like empty values and validation didn't fired. Need a validation so that Enters or Spaces or Tabs only are not considered as va[lues. a!paragraphField( ..... validations: ??? ...... )
This is the code i wrote my requirement is to im fetching the data's from DB lets say i have 11 data in total , i need it in a dynamic column in gridField like (no of col can be : 2,4,6) local!data : DB datas, local!noOfCol : (3,4,5) -> any number (const), so based on the col number the total number of data have to be grouped and run in the loop in a gridField using GridColumn i need to run the loop the data should be look like this in the ICON wise.it is done in Columns layoutexpample local!a : { {1,2,3,4} ,{5,6,7,8},{9,0}}, output in gridColumn in Left to Right1 2 3 4 5 6 7 8 9 0 null nullCode a!localVariables( local!data: rule!LH_QRC_getLookupDetailsByFilters(categoryList: "ICON"), local!noOfCol: 4, local!groupedData: a!forEach( items: enumerate( ceiling(count(local!data) / local!noOfCol) ), expression: index( local!data, enumerate(4) + (((fv!index - 1) * 4) + 1), null ) ), a!gridField( data: local!groupedData, columns: a!forEach( items:
i have 2 drop down. 2nd drop down is dependent on 1st value so i have to show default value in second one once the user select value in first dropdown when i has only one option in second dropdown this value i have to default once the value is deleted in first dropdown
Hi , I have one scenario that where if the value is not 0 and the values should not round off and it should accept up to 9 decimals like 3.612232423. Minimum Rate: 3.5 Maximum Rate: 4 input value is of number(dec) format i mean CDT has this data type, how can we achieve this if user enters any values apart from the scenario mentioned above should not except. Thanks in advance.
on page 1 on click of submit button am calling a Async service call which will return the data through calling Appian Web API and API is storing data to Maria DB. Meanwhile API is running user is forwarded to Page 2 on page 2 am dependent on the service call response which i called on page 1,as it was written to Maria DB how to get data from Maria DB to page 2 automatically without user action and can't use refreshVariable interval because not definite time on receiving response from service did any one implemented Async service calls in their work? if yes please let me know how you implemented the process of receiving response and reflecting the same on interface Thanks in advance
I have an interface that gets data via an integration and then filters those results: local!caseCommentsResult: rule!UWM_Get_Case_Comments(caseId: ri!caseId), local!caseComments: local!caseCommentsResult.result.body, local!filteredActivities: a!forEach( items: local!caseComments, expression: if( tostring(fv!item.commentType) = "CASE_NOTE", fv!item, null ) ), And it is displayed in a grid:a!columnLayout( contents: { a!localVariables( local!pageSize: 25, { a!gridField_23r3( emptyGridMessage: "No comments available", data: local!filteredNonNullActivities,I want the grid to refresh on two different scenarios - 1. on RECORD_ACTION (adding a new row)2. when a row is edited by direct integration callI've tried various different scenarios of local variables but cannot figure out how to get the refresh to work with both these scenarios, especia
We’ve large csv files and we want them in Appian, how will you do it
Hi! How can i show an array of documents in my interface for users to download? This is my situation: I am building an interface in the interface designer, and i have a rule input with the array of documents, now i want to show those documents for users to download, so i used a Link field component that let me put some links and i used the a!documentDownloadLink( to do that), but i do not know how to do it for a dynamic array because i will do not know the values of the rule input array, it is not static, it comes from the database. So now i know how to access if it is static , and that would be for instance like: a!documentDownloadLink(document: ri!ACAA_CreditRequest.creditDocs[1]) and so on, but with a dynamic array i do not know how to do this.
Hi, I want to use regex function to check if the entered value is a text ( both upper and lower case check) and if it's more than 12 characters.^[a-zA-Z]{1-12}$" .I used like this. can someone guide here.
Use Case Example of excalation and exemption
Team, I'm following the 'User Centered Design Practices' course on Appian academy which mentions the UX Design Guide. I'm unable to find a link to it in community. Is it found under a different heading now?
Hello, We have a client that is interested in embedding Appian within an IFrame on their site. They would like to set the IFrame height to fit the Appian embedded Interface to avoid having to scroll within the IFrame. Does anyone know a method within Appian to retrieve the specific dimensions per unique interface? We would like to use those dimensions to size each specific IFrame. Thank you in advance.
Hi Community, I am facing a weird issue in one of my environments. I have used richTextEditorField on my interface and have got the following output I don't know why I am getting an extra message (Saving Image in Appian) below my field. Please let me know if anybody has faced this issue, or have any solutionsFYI: The plugin is updated to its latest version The same code is working fine on my different environments.
i want to export grid data to excel part, with graph,i want to export above data with graph to excel
How am I supposed to on a addRowLink, add an empty document file to my list of documents files? The thing is: on a interface, the fileUploadField is working, but it doesn't work on the site addRowlink: a!dynamicLink( label: "Inserir novo documento", /*value: { id: null, doc: "", tipo: "", descricao: "" },*/ value: 'recordType!{1f7c4a8e-ee45-44c7-8872-dc5542133555}GC Documento Proposta'( 'recordType!{1f7c4a8e-ee45-44c7-8872-dc5542133555}GC Documento Proposta.fields.{9edd3c74-2a43-4d35-a34a-f15156e24008}nome': null ), saveInto: { a!save(ri!documents, append(ri!documents, "")), a!save(ri!record, append(ri!record, save!value)), } ), rowHeader: 1, )
I am in need of creating a basic data entry interface where it is just one text box where the user can input and item number, hit tab, writes to a record , clears out and they are ready for the next item. Looking for very minimal screen navigation. Thoughts?
I'm setting up an embedded interface using my local Appian installation as well as a local web application running on a local tomcat server. When accessing my web app I am prompted to log into my Appian account as expected but after providing credentials I get and error to enable cookies. I made sure my chrome settings were set to allow third-party cookies and tried again with the same error. Does anybody know what I need to configure to get past this error?
My user input task has multiple upload files fields and multiple fields. The user should be able to submit each file field without finishing the task. How should that be done if always after submission, the task just is done? By the way the submituploadedfile() is not available for tasks.
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.