-
Recently active
I have a small doubt and want to know if it can be resolved or not. So basically, I have a records list and I have generated a summary view for it. I am calling that record list in an interface wherein my column id_No is a link column and when clicked, displays a summary view of that particular record. I have created a local variable in that interface that should record/store the number of times any of the links from the id_No column are clicked. Is there any way to achieve it?
I have a scenario, where there are 2 dropdown fields namely "Region" and "Country" Choice Labels and Choice Values for "Region" dropdown field is referred to a constant (cons!LCV1_REG) and it has an array of values - Asia, Europe, Australia Choice Labels and Choice Values for "Country" dropdown field is referred to a constant (cons!LCV!_COUN) and it has an array of values - Japan, India, Sri Lanka, Russia, Germany France, New Zealand, Samoa, Tonga I created a decision rule (rule!LCV1_decidet) where my Region - Asia is equal to Country - Japan, India, Sri Lanka and my Region - Europe is equal to Country - Russia, Germany, France and my Region - Australia is equal to Country - New Zealand, Tonga, Samoa I created an interface for the same. So lets say I have selected Region = Asia and I get a list of Countries = Japan, India, Sri Lanka. Now if I suddenly go and select another Region, it gives me an error say
Hi guys, I am having a grid where a set of data will be on display. In a column I have used Icon indicator and a dynamic link. When I click it should change from true to false or false to true and the respective icon sholud change in the grid. Any solution for that. I have tried some ways but in the save option of dynamic link I am struck. Thanks in Advance. Regards, Kavya
Hi , Getting Expression evaluation error on UI while selecting multiple dropdown with two values. Need some inputs on below error to handle on UI : "Expression evaluation error [evaluation ID = XYZ12B] in rule 'testRule1' (called by rule 'testRule2') at function a!forEach [line 286]: An error occurred while executing a save: Expression evaluation error: The list of indicies and list of new values must be of equal length. The list of indicies has 1 items. The list of new values has 2 items." Thanks Sandeep
Hello, I have a "little" problem. I have an array that I want to modify using a! save, inside my foreach. Everything works fine on the interface. a!sideBySideItem( item: a!buttonArrayLayout( buttons: { a!buttonWidget( label: "", icon: "trash-o", size: "SMALL", width: "MINIMIZE", style: "DESTRUCTIVE", loadingIndicator: true, saveInto: { a!save( target: ri!moneyAccounts[fv!index].isDeleted, value: true() ), } ), a!buttonWidget( label: "", icon: "pencil-square
I have been assigned a task in my project wherein the requirement is to display a calendar as a page in the site. Note: The calendar should be user friendly and should also display events, if assigned to a user. The user should be able to move from one month to another, one year to another etc. The user should be able to view the calendar as the current day, current week or current month. How do I carry out this requirement?
Hi All, I have a local variable defined within load() which retrieves data from one of the table using a!queryentity() . local!data: rule!getAllData(id) Whenever there is an insert or update happens in the table , local!data pulls the new values on performing a refresh of the page from the browser . My requirement is that i dont want to query the table again even though i refresh the page from the browser . Basically i want to retrieve the data from database only once when the task is generated . Please can you help me with this problem. Thanks in advance .
I have taken one radiobuttonfield in my interface after clicking on update button in interface it should convert it into textfield. if anyone knows about this please help me out of this
How can we save calculated value in rule input without user interaction in field ??
So, i have a date that cannot be > than today(), so i have a validation field. But when I enter a wrong date, the validation field triggers but it saves the save value into my rule input. It is possible to don´t save the value if the validation field triggers?
Does Appian have an out-of-the-box JSON formatter which I can use to format JSON in a User Interface for our support team? Something like https://jsonformatter.org/ offers.
We are using the helpToolTip parameter with some of our interface questions. Is it possible to change the styling of this (i.e. color, size, icon)?
How can i create 3 column grid on interface with the button at bottom. On the click of submit button new section get open with 3 box having same column as grid columns.
Hi Appian DevsI need to provide French language support for my entire application interfaces. I got to know about internationalization support in appian, but I am not able to figure out how to implement it specifically.Can you please guide me through it?RegardsSaif
Hi, Please can any one help me regarding missing id-s. I am using editable grid and after select a value from component pickerFieldRecords the id is not saved into local variable. What I am doing wrong? Here is a code: Thank you. Local variable
Hi All, I have requirement where i need to display the API data which is in hierarchical pattern. which we need to display in hierarchyBrowserFieldColumns. I have implemented the hierarchy but we need a filter to selected any values from that hierarchy, to achieve that i have used a custom picker but how i need some input from you guys to implement that scenario. Any help the data from API is in the format { a!map( id: "1234", body: "Test1", title: "Title1", name: "Name1", Array: { a!map( id: "12345", body: "Test2", title: "Title2", name: "Name2", lastname: { "Array2" } ), a!map( id: "123456", body: "Test3", title: "Title3", name: "Name3", lastname: { "Array3" } ) } ), a!map( id: "123456", body: "Test2", title: "Title5", name: "Name5", Array: { a!map( id: "12345545", body: "Test2&qu
Hi everyone, I'm on 21.3 and noticing that Section labels aren't being read out by a screen reader despite what the documentation seems to state: https://docs.appian.com/suite/help/21.3/ux_accessibility.html#use-accessible-headers Using NVDA on Firefox. Here is a sample of the code. Am I missing something? a!sectionLayout( label: "Section 1", accessibilityText: "Section 1 Accessiblity Text", labelHeadingTag: "H2", divider: "ABOVE", dividerColor: "ACCENT", contents: { a!sectionLayout( label: "Field Set 1", accessibilityText: "Section 2 Accessiblity Text", labelHeadingTag: "H3", divider: "ABOVE", contents: { a!columnsLayout( columns: { a!columnLayout( contents: a!dropdownField( label: "Field 1", placeholder: "Placeholder", value: index(ri!formData.FORM_DATA_SECTION1, "field1", null), saveInto: ri!formData.FORM_DATA_SECTION1.field1,
I'm doing an interface with Milestone component for 7 steps ,the flow continues until 4th step when i click on "next" BUTTON .But from fifth step it was not cotinues its flow. (Please NOTE: INTERFACE doesn't throwing any error)
I am having an issue with a read only grid that is selectable. Upon page load users can select checkboxes, but those selections disappear. However, if the user selects the checkboxes a second time, the selections save and persist. It is only the first attempt at saving the selections that fails. Note: The first selection takes a long time to load and then disappears. The selections after that load normally. This issue does not exist in the interface designer (only on the live site) selectable: true, selectionValue: local!selection, selectionSaveInto:{ local!selection, a!save(local!selected, append(local!selected, fv!selectedRows)), a!save(local!selected, difference(local!selected, fv!deselectedRows)) }, selectionRequired: true, Code above is where we save each selection in the read only grid. a!startProcessLink( processModel: cons!PS_OPEN_NEW_TICKET_PM, processParameters: { periIDs: local!selection } ) Co
I have created an application that uses a public API as an Integration to retrieve the required data from a 3rd party website and store it in the Appian database. So my application is a "Dictionary Book" and I have created a CDT for the same using these fields: id word phonetic origin definition example searchedBy searchedAt Next, I created an interface wherein I have passed this CDT, readOnly and cancel as a rule input. The user needs to fill and submit the "word" field, and the "searchedBy" and "searchedAt" fields are set using loggedInUser and now function. The rest of the fields would get their respective data via Integrations. I created the entire process in the Process Model and I was able to get and save the data for all the CDT fields without any errors. But when I added this interface as a page to my site, and tried to execute this interface, it gave me an error saying: Expression evaluation error [evaluation ID = 831a9:
Hello, We have a requirement to embed Appian user interfaces/ approval tasks in a WeCom mobile App. I referred to Appian's documentation on embedded interfaces on https://docs.appian.com/suite/help/21.4/Embedded_Interfaces.html It details how to embed Appian interfaces in web pages outside of Appian but could not find any details on embedding Appian content in external mobile App. So is it possible to embed Appian interfaces in a mobile App like WeCom (similar to whatsapp)? Any pointers would be helpful Thanks!
How to make the milestone field step count as dynamic eg - if I have 10 questions the local!steps will come dynamically as 10
Hi Team, Getting the following error in my site, I understood the issue, but unable to find in which interface the issue occurred, Please help me to find the root cause
Anyone knows how can i use this arrows or something similar in the application in appian designer?
I want to clear the input for a radio button after I change the state of another radio button Example once I change the state of radio button to Tier 2 Additional Request From I want "What tier outputs does this request cover? " to reset if it was previously selected a!radioButtonField( label: "What application are you submitting? ", labelPosition: "ABOVE", choiceLabels: {"Tier 1 Service Output Form", "Tier 2 Additional Request Form", "Tier 3 Service Output Form"}, choiceValues: {"Tier 1 Service Output Form", "Tier 2 Additional Request Form", "Tier 3 Service Output Form"}, value: ri!svcRequest.submitted_app_type, saveInto: ri!svcRequest.submitted_app_type, required: true, choiceLayout: "STACKED", validations: {} ) a!radioButtonField( label: "What tier outputs does this request cover? ", labelPosition: "ABOVE", choiceLabels: {"1A", "1B"
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.