Comments
-
Are you wanting to be able to filter based on a list of items? Try this: CASE --Checks from list using “:” to determine start and end of item name WHEN CONCAT(':', REPLACE(UPPER(REPLACE(`Var.ItemList`, ',', ' ')), ' ' , ':'),':') LIKE CONCAT('%:', UPPER(`ItemName`), ':%') THEN 1 --Checks for direct match WHEN…
-
@Ashleigh That is set to true.
-
@Ashleigh Yes, they see all the same icons I am able to see. When they click the trashcan, the line will disappear however as soon as the page refreshes, it will return as no real change was made to the data. When they try to edit lines, the app freezes when they click save
-
@Ashleigh I tried this and while this does enable the buttons for the other users, they still are not able to edit/delete rows even on a fresh instance of the DDX Form. I had a similar solution in place however I just switched the return from the 'isViewTheOwner' function to be 'return 1===1' so that all users would be set…
-
I've tried various combinations of app permissions. Currently, I have all permissions set. Users are able to see and click the Delete button which does remove it from the current window however once refreshed or any other change is made, the deleted rows re-appear. I've also tried using the endpoints from that same page…
-
Hey Grant! That makes a lot of sense. I'll explore the possibilities of an HTML redirect but obviously that'll be far from ideal and require a bit more work. Thanks for the info!
-
I'm using an HTML Table. I can create links to websites fine. The issue is creating a link that will open the invoice number in a seperate program. Even if I put in a link directly (not using CONCAT) using this for example: '<a href="officelink://4d/invoices/:22349529">22349529</a>' The link is created fine but when I…