Greg58 Posted February 7, 2019 Posted February 7, 2019 I have a list (not in a portal) and a button at the end of each row. The button is to delete the entry if required. The button shows up on every list entry and clutters up the look. How can I get the button to only show for the selected record in the list please? Thanks.
Ocean West Posted February 7, 2019 Posted February 7, 2019 Hi, And welcome to the forums. I think there are a few nuggets that may work for you. Delete Row.fmp12
comment Posted February 7, 2019 Posted February 7, 2019 9 hours ago, Greg58 said: How can I get the button to only show for the selected record I believe it was for this reason that the Get(ActiveRecordNumber) function was added in version 17 (although it still doesn't work in List view without refreshing the object). If you're using version 16, you will have to create a script that does: Set Variable [ $$activeRecordID; Value:Get (RecordID) ] Refresh Object [ Object Name: "myButton" ] and trigger it to run OnRecordLoad. Then give your button an object name and make it hide when: $$activeRecordID ≠ Get (RecordID) 2
Greg58 Posted February 8, 2019 Author Posted February 8, 2019 Fantastic. Worked just how I wanted. Thanks for your help.
Greg58 Posted February 8, 2019 Author Posted February 8, 2019 19 hours ago, Ocean West said: Hi, And welcome to the forums. I think there are a few nuggets that may work for you. Delete Row.fmp12 220 kB · 6 downloads Thanks very much for your help. I got a few good tips from your suggestion.
Dr.Gopala krishnam raju AMBATI Posted February 8, 2019 Posted February 8, 2019 (edited) how is the delete button on hover is getting visible kindly explain plz 13 hours ago, comment said: I believe it was for this reason that the Get(ActiveRecordNumber) function was added in version 17 (although it still doesn't work in List view without refreshing the object). there are encrypted HTML mindmaps that doesn't work without refreshing when used in web viewer 21 hours ago, Ocean West said: Hi, And welcome to the forums. I think there are a few nuggets that may work for you. Delete Row.fmp12 220 kB · 7 downloads plz consider adding attachment icon on topic hope i am clear example like in gmail Edited February 8, 2019 by Dr.Gopala krishnam raju AMBATI
Recommended Posts
This topic is 2184 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now