-
Recently active
Hi, I have several editable grids in my interface with an add row link. When I'm testing the interface in the rule editor, the link works just fine for all grids, but when I try to create a new record using the record list action, clicking the link does not do anything. The grids are implemented as follows: a!gridLayout( label: "Wachstumstreiber und Schlüsselerfolgsfaktoren", labelPosition: "ABOVE", emptyGridMessage: "Keine Wachstumstreiber angegeben", headerCells: { a!gridLayoutHeaderCell(label: "Wachstumstreiber"), a!gridLayoutHeaderCell(label: "Schlüsselerfolgsfaktoren"), if( local!readOnly, {}, { a!gridLayoutHeaderCell(label: "") } ) }, columnConfigs: { a!gridLayoutColumnConfig(weight: 1), a!gridLayoutColumnConfig(weight: 1), if( local!readOnly, {}, { a!gridLayoutColumnConfig(width: "ICON") } ) }, rows: a!forEach( items: ri!konzeptRecord['recordType!{e6823cb0-0826-4ba1-a489-d1b628fb0037}PEP Ko
Hi team! I have the following issue. When using a test environment, any read-only grids are stuck with the loading data animation, which only occurs until I perform an action such as resizing the screen, at which point the data finally renders on the grid. That behaviour only happens in the test environment; on dev, the information renders when the page loads. Has anyone faced a similar behaviour/issue? Thanks!
Is there any feasability to print the value of a local variable in the runtime & the value it has in the console. (Like other programming languages for debugging)
we have a collapsable grid whose individual cells contain dynamic links. Assume this grid takes up the entirety of screen. Upon clicking the dynamic link 3 variables are saved (local!showTransactions, local!accountEntityCode, and local!transactionAccPer). Another interface loads below the grid when local!showTransactions = True. However upon clicking the dynamic link value, there is no indication of this newly rendered interface. The current grid takes up the entire screen. We need some way to notify the user of the new interface rendered below. Ideally, when the user clicks on the hyperlink, it will jump to the section what was loaded below. What we want to avoid using: recordLinks and startProcessLinks cause major slowdowns compared to dynamicLinks when generating the linked values of the collapsable grid. Dynamic Links are preffered. Any recommendations?
Hi, I want my alphanumeric field with the below condition. if the text is asdf45 I want the output total as 10 digits with Zero's in the front. How can I do that? When I try doing text(asd45,"0000000000") --> this is not considering the strings present.Thanks!
Hi Team, Below is my code snippet, i hope i have handled the null but still am getting. can you please guide where it went wrong. local!salesReps:index(rule!GSE_SCL_QRY_getViewIntakeDetails( region:local!region, sipYear:local!year, pagingInfo:a!pagingInfo(1,-1) ).data,"Name",null), local!repChoice:{union(local!salesReps,local!salesReps)}, local!salesRepName: if(a!isNullOrEmpty(local!repChoice),"None","All reps"), a!multipleDropdownField( label:"Sales rep name", choiceLabels: if(a!isNullOrEmpty(local!repChoice), {"No reps"}, {"All reps",local!repChoice}, ), choiceValues: if(a!isNullOrEmpty(local!repChoice), {"None"}, {"All reps",local!repChoice}, ), value:local!salesRepName, saveInto: local!salesRepName )
Hi Team,I have two read-only grids, first grid display data from table A and querying from record type. Second grid from table B and querying from query entity.When i am Deleting selected records from first grid, the grid is not refreshing even though i am using refresh variables.When i am Adding selected records from second grid then both the first and second grids are refreshing properly. Inserted code for reference, please guide me if i am missing anything:a!localVariables( local!refreshFlag, local!refreshFlagForDelete, local!isSuccess: false(), local!refreshCounter: 0, local!pagingInfo: a!pagingInfo( startIndex: 1, batchSize: cons!TRICS_BATCH_SIZE[6] ), local!selectionOfRulesIdsForDelete, local!selectionOfRulesForDelete, local!selectionOfRulesIdsForAdd, local!selectionOfRulesForAdd, local!interpretationChangeMappingRuleIds, local!interpretationChangeMappings: a!refreshVariable( value: if( a!isNotNullOrEmpty( index( ri
Hello! I would like to display a list of locales enabled in Administration Console -> Internationalization to a user in a SAIL interface. How can I retrieve the list of enabled locales and how to find out which one is the default locale? Thanks in advance!
How to make UI to reach top of page when a button is pressed at the bottom inorder to show in Progress Icon
Hi team, We are experiencing a minor issue with a generic interface that contains standard action buttons (Cancel, OK). This interface is called from two different Record Views: Record Summary 1 and Record Summary 2. Each summary has its own main interface which, in turn, calls our generic component. The Issue: Record Summary 1: Clicking the buttons works as expected. Record Summary 2: Clicking the buttons triggers an unexpected scroll to the top of the page. Observations: Interface Designer: When testing directly within the Summary interfaces, everything works correctly. Environment: The issue only occurs when accessing the views via a Record Link within a Site. Data Source Difference: There is one key difference between the Record Types: The working Record (Summary 1) points directly to a database table. The failing Record (Summary 2) points to a Data Store Entity (DSE). Can anyone helps?
Hello. I have a read-only grid that displays permissions data using a!recordData() as the data source. Currently, I can only capture the record IDs when users manually select rows in the grid using the selectionSaveInto parameter. My Goal:I want to automatically save all the record IDs returned by the a!recordData() query without requiring user selection and without using a!queryRecordType() in a separate expression or local variable. Current Implementation: a!gridField( label: "Permissions to Transfer:", instructions: "A temporary access group will be created to grant the selected permissions from the source employee to the destination employee.", helpTooltip: "Permissions that would generate risk combination or already belong to the Destination Employee have been hidden", labelPosition: "ABOVE", data: a!recordData( recordType: 'recordType!{57571bf8-20a7-4874-ac82-7f586277be58}GDA Permissao Acesso', filters
Hello, I am currently working with a record which is being used in 2 different websites on the same environment. These 2 websites have a different look and feel, and some record informations should only be displayed on one of the website, but not on the other one. Is there a way to keep using the same record on these 2 websites, but have the summary interface dynamically change depending on the website it is accessed from ? For instance, if we access the record from website A, some cards are hidden, whereas if we access the same record from website B, the same cards are showing. So far I haven't been able to find a way to "detect" the active website from my interface, and I am not sure this is possible. Thanks
I am loading data from an Excel sheet into an Editable Grid. I added Edit and Delete buttons for each row, but the actions are not functioning as expected. Could someone guide me on how to fix this or share the correct approach? Ia!localVariables( local!data: 309474, local!sheetCount: getnumberofsheets(document: local!data), local!sheetIndexes: enumerate(local!sheetCount), local!activeTab: 1, local!readOnly: tointeger({}), local!sheets: a!forEach( items: local!sheetIndexes, expression: a!localVariables( local!sheetNumber: fv!item, local!excelOutput: readexcelsheetpaging( excelDocument: local!data, sheetNumber: local!sheetNumber, pagingInfo: a!pagingInfo(startIndex: 1, batchSize: 1000) ), local!rows: index(local!excelOutput, "data", {}), local!totalRow: tointeger( index(local!excelOutput, "totalCount", 0) ), local!rowHeaderRaw: index(index(local!rows, 1, {}), "values", {}), local!headers:
Current Situation:We have two applications hosted on Appian and have configured session timeout settings. When there was only one application, after the session timeout, a popup appeared, and upon resuming, we were redirected back to that application’s page.Now that we have two applications with the same timeout configuration in the Admin Console, the behavior has changed. After the session timeout message appears and we resume the second application’s UI, the system redirects us to the first application’s interface instead. Question:Why is this happening, and what can we do to ensure that after refreshing post-timeout, the user is redirected back to the second application’s UI?
Hi , I am building a document upload form after uploading the document it should be populating in the gridfield with the link format where user can download the lfile. but that field is coming as empty. This is my code. The documentId field is text now, we don't have access to edit it now . can changing the datatype will fix the issue or is there anything elseI have to look into? a!localVariables( local!documentId: null, local!category: null, local!comment: null, local!showUploadSection: false(), local!npdoDocumentList: ri!npdoDocument, a!formLayout( contents: { a!sectionLayout( contents: { a!boxLayout( label: "Supporting Documents", contents: { a!gridField( data: local!npdoDocumentList, columns: { a!gridColumn( label: "Title", value: a!linkField(
In the Appian User Interface, I have a grid with colored rows. My requirement is that when I click on 'Export to Excel' from the grid, the downloaded Excel file should retain the same row colors. How can I achieve this I am uploading image
Hi All, I have editable grid in my UI, I have validations in the rows. i gave edit button and save button on each row to edit and save the particular row. but when i click on save button, it is validating the entire grid rows not only that particular row. Can you please help how to validate only that particular row when we save it. Thanks in advance. SS for reference.
Hi, How can I show a grid with different color ( 3 different colors) based on the days between Today and another day. In the below image right now column2 is showing with red line. Any idea how can I develop this. Any helpful comments please.
I need guidance on designing an Appian dashboard that displays a live, interactive map showing pins for all active parking locations. Each parking location has latitude and longitude, but these coordinates should come from user input by clicking on the map through a create form in Appian. What is the best approach in Appian to embed an interactive map that supports both: Displaying existing pins from stored data. Capturing new coordinates when a user clicks on the map? Please anyone Assist me.
How can we group rows in Readonly grid
I want to collapse/Expand rows in read only grid by based on particular field and how can it will implemented
In our Appian Site, we have a DummyHomePage interface that contains two sub-interfaces: DummyCustomFilter – used to select filter values DummyEditableGrid – displays the filtered data in a grid When a user selects filter values and clicks the action link in the grid, we navigate to the Record Summary View for the selected solutionId using a!recordLink() or urlForRecord().In the Summary View, we have a Back button that should return to the DummyHomePage while keeping the previously selected filter values.
We are using a!safelink to provide provision to download a file using presigned URL. The requirement is we need to store which user clicked on the link and when in audit table, but as in the safelink there are no saveinto parameter . I tried multiple other ways but all in vain. I am unable to find a solution, where on a single click user able to navigate using presigned url as well as in backed it writes to audit. please advise what to do that in this case and any work around we can do to achieve the requirement. Thank you in advance
Hi All, We're getting an error like- "Expression evaluation error at function- a!UserCardUiContents: The user does not exist." No object has been mentioned in the error mail to identify where the error is occurring.May I know please when this error generally occurs and how to resolve it. Thanks
I have a record action configured with User input task form , In that interface there is save draft button on the left corner I want to remove it . How can I do that?
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.