-
Recently active
My application is specifically for a local where the decimal symbol used is comma " , " and not a period " . ". So, the decimals will be inputted by the portal users as `5,55` instead of `5.55` So my current code is the following: a!textField( label: "The amount of money for payment", labelPosition: "ABOVE", instructions: "", helpTooltip: "The amount of money for payment", value: if( local!variant_value_for_payment > 0, a!currency( isoCode: "BRL", value: local!variant_value_for_payment, format: "LOCALE" ), null ), saveInto: { a!save( local!variant_value_for_payment, todecimal(save!value) ) }, refreshAfter: "KEYPRESS" ), I've read the a!currency docs and the main question for the best solution for me should be: → How may I be able to forcely make the system reads "100.50" and recognizes as " 100.00" and keeps that format? Thanks from now on
/resized-image/__size/640x480/__key/communityserver-components-multipleuploadfilemanager/5d32e8f2_2D00_67fb_2D00_46e6_2D00_8cff_2D00_9dcc2b6c0050-89589-complete/pastedimage1712731195444v1.png I have a read-only grid that displays data retrieved using the record data function. The data appears as expected. However, I need to calculate the Total Amount based on the "Amount" column in the grid, and this total should be displayed outside the grid in another card layout. The issue is that using the record data function, I'm unable to access the data in a separate local variable to calculate the Total Amount. Although I can use the query record type function to obtain the data and calculate the total amount, this approach is not considered best practice. How can I calculate the Total Amount while using the record data function? Please Give me any Solution for this
i want to add comma to separate the numbers after clicking enter key the current output like: 98998997899 but my desired output should be : 9899,899,7899 How can i acheive this....
Hi team, I have a gridfield where a gridcolumn has a value who's character count can go upto 2500. I want to implement a functionality where i display only 200 chars and show a link "more". When I click on the link, either a popup appears where the entire 2500 char text is displayed or another site appears to display the whole value. How can I achieve this? I tried to use safelink, but I am not sure how to configure the uri to display the text. Can anyone please help me out. So far, i have achieved this,a!gridColumn( label: "Enter 2500 char text", value: a!richTextDisplayField( value:{a!richTextItem( text: left(fv!row.textValue,255) ), a!richTextItem( text:"..more", link: a!safeLink( ) ) } ) )
Hi All, We are facing issue with Export to excel. while exporting we are not getting data in to the excel sheet we have nearly 350 records only still we are facing this issue.If we give any filters then it is fetching the data otherwise it is exporting with no values in excel.Please find the screen shot How can we resolve this? please provide suggestion
I am currently utilizing pane layout to display data on an interface. Everything in Appian Designer works as expected, I can scroll my data using the pane layout feature. However, when I added this to a site to be displayed on the front end, when I navigate to that site page and try to scroll it does not work. Any ideas on why pane layout is working in designer but not from the front end?
Hello everyone, I have a question for you.I am experiencing an issue where some data is not being displayed on a site that is currently under development, and I would appreciate any hints on how to resolve the issue. I recently added a new field to one of my master DBs.We also re-mapped the record types and performed record sync.We're also adding new fields to CDT and republishing the datastore. Based on the above, I performed the process of passing a CDT to the rule input of a certain interface and displaying it. The relevant description isri!○○CDT[recordType!○○.field.××××] It is displayed normally on the editing screen, but it is not displayed on the site. When transitioning to the relevant screen on the site, a process model is running behind the scenes, and process variables are passed to the form.This process variable's CDT is querying the record type.To check if the query is incorrect, I run the same query on a temporary interface, and all values a
Hello Folks, Followed by above screenshots: I have two fields (dropdown and text). Text field comes up when click on plus icon. Scenario: Dropdown field contains company name. There is a possibility to add manual company name. That's why plus icon will be placed and on click of that shows up text field. I have column in a database called companyName that saves value. Issue here is: Both field saves value into same "saveInto" which conflicts. When I fills up text field it shows dropdown error because value saves into same companyName column. Please see below code. a!localVariables( local!company: false(), a!dropdownField( choiceLabels: local!CompanyLabels, choiceValues: local!CompanyLabels, label: "company name:", labelPosition: "ADJACENT", placeholder: "Select Choice", value: tostring(index(ri!company, "companyName", {})), saveInto: ri!company.companyName, disabled: if( toboolean(not(local!company)), fals
Hi, I am following https://docs.appian.com/suite/help/24.2/recipe-expand-collapse-rows-in-a-tree-grid.html to create a Proof of concept. I have dropped collapsible functionality as my intent is I should have a header and sub items below it as shown in this recipe. I have done that successfully but when I try to add the selection check box , there is a problem , as this grid is written using loop within loop, when I try to select an item in first section, the item in second section also gets selected. Please let me know if there is an alternate way to resolve this. Any help is appreciated.
How to add footer so that it can always appear at the bottom of the site?Client wants footer always appears at the bottom of the screen. While we are trying to use card layout as footer, but It was moving upwards when there was no content in that screen. If any other approach to achieve this. could you please help me?
Hi Team, When I click the chevron up icon in the header, a grid should appear below the icon like a pop-up screen similar to the screen shot attached. 1) I have tried to create similar to the popup by using card layout. In card layout I'm showing the grid, when I click on the icon, the card height increases too much, causing the content move down. 2)I also tried using record action, but the pop-up screen appears in the middle of the screen. Could you please guide me how to achieve this
Hello Everyone, I need to display a SVG format logo. I am using imagefield component for this purpose but facing one challange. If tumbanil property is not set to true, image is not visible. Drawback of using this tmbnial property is that it covers the image with a border and not accepted by client. Is there any other way to display SVG format logo in Appian without facing above issue? Please find the code below for reference - a!imageField( label: "Image", labelPosition: "ABOVE", images: { a!documentImage( document:cons!SVG_IMAGES ) }, size: "MEDIUM",isThumbnail: true, style: "STANDARD" )
Hello, I'm on the hunt for a pattern for how to best implement a risk assessment framework into Appian. Customer ask is to assign risk level characteristics (H, M, L) to various categories. I've played with a 'Grid', card layouts and not seeing anything I love. Ideally want to give it a more "dashboard" look/feel. Thanks!
Hi Team, Is there a way to hide default navigation and logged in user icon in the application? Client doesn't want the same. Could someone help?
Hi, As per SAIL documentation (https://docs.appian.com/suite/help/24.2/SAIL_Performance.html) it will go for server for new UI rendering. Is it fetch call for the DB query to populate the local variables? Now, a problem is small colour change on UI, which can be done easily using JS or jQuery, it taking longer than expected as it is doing the server call. How to optimise this? Is there any way out?
I want to validate if current row being entered in editable grid is duplicate or not i.e. does it exists in grid already or not.
Hi I have a requirement where i need to add one field which should be link so when i navigate to link it should open record view and in that view interface there is dropdown which should contain that value from where i clicked and navigate to record . How can i achieve the second part passing the value from source page to reflect on record view dropdown
Here the name of the fourth tab is not showing completely . Is there any way to come over this scenario ? Thanks !
I'm looking for a component that can help me display a result on a "spectrum" of risk from low to high. For example, the risk spectrum is 0-100 where 0-33 = LOW, 34-66 MODERATE, and 67-100 HIGH If the underlying data results in 45, I want to be able to display that on a dashboard that indicates that that is a MODERATE result - would love for it to be displayed/overlaid atop the spectrum for context but can't seem to find a good, common, pattern for this. Thanks!
I have used pickerfielusers in which the group filter is mentioned as "All Groups". "All Groups" has sub groups inside it called Group A, B , etc. The security of All Groups is "Group Admin" where no member of sub groups are available. Now, as only a member of Group A, when I access the picker, the picker shows me suggestions from only Group A and not the other group members. All the groups here are "Public", "Closed" and "Low". Is it security of this "All Groups" blocking them from seeing each other?
Hi guys, I have an integration in which we are sharing the user tasks in other system with a hyperlink in the ID, like this: I have the requirement of give them the way of open directly the UI which display the task (TASK FORM) once the link is clicked. In other frameworks sometimes we can use query parameters to customize the content being displayed, but I'm not sure how can we implement this, since appian use an encrypted value or generic value for task forms: Someone can guide me or knows how to open a task form directly? in this case from outside? NOTE: The users will be using SSO (OpenID) to login into our application. Thanks in advance.
Hi Team,Is it possible to open a EML file from interface. I'm having requirement for sending reply email to the original email ,so my idea is to open the original email's eml file and send reply from that. Because I want to maintain the reply emails in the original thread. Is it possible or any work around to achieve this?Thanks.
Hello is it possible to create a staked column chart like below: /resized-image/__size/996x878/__key/communityserver-discussions-components-files/13/Screenshot-2024_2D00_06_2D00_21-at-2.37.11_2F20_PM.pngThe data is like thisLous Total:50 Running: 30 D1: 5 D2: 10 D3: 10 D4: 5 Completed: 20 D1: 20How do I achieve this kind of chart. Thanks
Hi All, When I try to click the link 'Click here to download Report', it is not at all moving. We are on Appin 24.2 version and following is the code written a!linkField( links: a!documentDownloadLink( label: Click here to Download Report (Label), document: local!generatedReport Please help.
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.