-
Recently active
I'm attempting to populate a record section from the click of a grid. Not sure how to populate the record...also wanted to ensure I'm building out the grid properly. Thank you. a!localVariables( local!selection, local!selectedRows, { a!sectionLayout( label: "Results", labelSize: "SMALL", contents: { a!gridField( label: "", data:{ a!map(id: 11, Name: "Elizabeth Ward", dept: "Engineering", role: "Senior Engineer", team: "Front-End Components", pto: 15, startDate: today()-500), a!map(id: 22, Name: "Michael Johnson", dept: "Finance", role: "Payroll Manager", team: "Accounts Payable", pto: 2, startDate: today()-100), a!map(id: 33, Name: "John Smith", dept: "Engineering", role: "Quality Engineer", team: "User Acceptance Testing", pto: 5, startDate: today()-1000), }, columns: { a!gridColumn(
I am working on developing a inventory data collection application and would like to have it play an audio sound if the barcode scanned is a valid part no. Any thoughts on this?
this is the code i have written
Hi I want add or complete data in a text fields in an interface (image below) to update many rows of my db at one go, instead of updating one by one or row by row For example, complete the form interface (image above) to update 5 rows at one go... this rows of my db which would be the best practice or help me with examples? please help
Hello Guys, I was wondering on the Date Field Validation in Appian. The First screenshot shows that the date is entered in dd/mm/yyyy format and its auto validated. The Screenshot shows that the date is entered in mm/dd/yyyy format and its validated to enter the date format in mm/dd/yyyy. Should it not be case throwing a validation as the valid format is dd/mm/yyyy since the date field already in mm/dd/yyyy format? a!localVariables( local!storedValue:today()-1, a!dateField( label:"RSVP By", value: local!storedValue, saveInto: local!storedValue, ) ) Let me know If I am missing something.
Hi all, I'm creating a mobile application, ance and I have 3 interfaces. I want the user when signs in moved to the other interface. is there anyway to do this? or any guidance in appian documentation? because I couldn't find any Thanks
Expression evaluation error [evaluation ID = ] in rule 'pa_addvehicle' at function 'todate' parameter 1 [line 75]: PA Vehicle can only be indexed into using square brackets or the index function
Hello, I want to create a seat plan for office floors on Appian. Can someone please suggest what objects can i use to create seat plan of more than 200 seats with spaces in between the seats as required. Thanks
Hi, I need to open a SAIL form directly from an old Portal form. I don't want to launch the page that states - 'This form must be viewed in Tempo.'., for the user to then have to navigate to Tempo and then Tasks, but for the task page to open directly The task link is on the old dashboard style portal and in a task list for the user to click which uses - /suite/process/getTaskDetails.simplepopup?taskId=268974442&appian_environment=apps*/ as opposed to /suite/process/getTaskDetails.simplepopup?appian_environment=tempo&taskId="&ri!taskId&"&pmdg=true" which would open it directly. Thx
Hi all. I'm creating a mobile application for employees to record their working hours, is there anyway to create a sign in feature? because each user should have an account to login and insert his record hours. but I'm wondering how can I stored their passwords, and emails?
User demonstrated an error that is continuously occurring for them. The functionality previously worked for the user. I do not receive the error following the same steps. The error also has no details and it is not shown in the tomcat logs. What can I look in to?
""
Hi all I'm facing a problem when I try run this code: a!richTextDisplayField( labelPosition: "COLLAPSED", value: { a!richTextItem( text: { hour(ri!ES_Working_Hours_Record.LeavingTime - ri!ES_Working_Hours_Record.StartTime), " hours", if( hour(ri!ES_Working_Hours_Record.LeavingTime - ri!ES_Working_Hours_Record.StartTime) = "8", " Working hours are complete", if( and(8 > hour(ri!ES_Working_Hours_Record.LeavingTime - ri!ES_Working_Hours_Record.StartTime) > 0), " Working hours are not complete", if( hour(ri!ES_Working_Hours_Record.LeavingTime - ri!ES_Working_Hours_Record.StartTime) = 0, " insert working hours correctly please", " working hours passed limit" ) ) ) }, size: "STANDARD", style: { "STRONG" } ) } ) }, I got this message: Error Evaluating UI Expression Expression evaluation error [evaluation ID = ] in rule 'es_working_hours_record2' at function 'hour' [line 33
Hi, I have a lot of code that I am trying to write in the expression editor. After saving code is getting trimmed. I am not sure if there is any limit on the number of characters that are allowed inside Expression Editor. Code is getting trimmed starting from the yellow highlighted color. Can someone advise on this? Thanks.
this is my simple interface1, i want to create a link or something to open another interface2 (dashboard). I'm trying this, because in sites only its available for 5 pages, interface 2
Existing Code: Using richtextdisplayfield to show related actions on UI/Summary(customized) New Code: We are planning to create Sync Records and all these links are enabled under Related Actions. Now i dont them to be displayed as dialog box buttons or dont want them under "Related Actions" page. Instead the look of the UI should look like the existing one like above. How can we customize this using modern records/records--> not sure how to make use of a!recordActionField() if it helps. Any suggestions or inputs helpful here!! Thanks in advance
Hi Developers, I have one query, is it possible to add query string with appian portal url and later we can use that query string data for further use?? thanks
what mistake i have done here when ever i try to select it is not selecting once i select it is deselecting again even i have checked with this.. this also same issue
Has anyone tried to embed a video player that would play WAV files? We have a need to do this.
Hi All, here i using Milestone for my App in Summary(view) interface, so based on status value the Milestone Bar should work. in table, "status" containing statuses: "Assigne", "Approved", "Return" and "Reject", which represent the different statuses of a request. I have the requirement of a milestone where first step should always be "Addproduct", then next possible steps shown are "Approved", by Manager and "Approved" by supplier it will complete. but when shopmanager "Reject" show like. > similarly, Supplier too,
Hi all, I'm creating an interface that records and calculates the working hours for employees, the idea is if the working hours are less than 8 it should display: " Working hours are incomplete " , and if it was less than 0 it should display: " insert your working hours correctly please " I made this expression, but when the value is less than 8 even it was less than 0 it always display : " Working hours are incomplete " here's the expression: { a!richTextItem( if( ri!WorkingHours = "8", "Working hours are complete", if( 8 > ri!WorkingHours > 0, "Working hours are not complete", if( ri!WorkingHours < 0, "insert working hours correctly please" ) ) ) )
I have an editable grid containing two drop-down columns with other editable columns as well. In grid, one drop-down value is mapped with another drop-down value. I need to put a validation that if that particular mapping already exists in DB then show mapping already exists only on click of submit button. Let's say in DB values in one row are: A (drop-down 1) B (drop-down 2) C (Text field) 1 2 xyz Then if user enters the same mapping of A and B, i.e. selects A as 1 and B as 2 in UI, then show mapping exists. User can add multiple rows in editable grid through add row button and multiple mappings in grid can be added. It should be able to check for all rows and th
Hi, I have a requirement to provide just a link to download a standard file (File uploaded to a folder which is there under KnowledgeCenter) What is the best way to do this. When I review the Appian document I found this. a!documentDownloadLink( label, document, showWhen ) Now, to the document parameter, how can I provide a path of the document?
what might be my mistake
whenever i click on add it's creating blank row in in RI, but no in the interface
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.