February 7, 20196 yr 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.
February 7, 20196 yr Hi, And welcome to the forums. I think there are a few nuggets that may work for you. Delete Row.fmp12
February 7, 20196 yr 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)
February 8, 20196 yr Author 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.
February 8, 20196 yr 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, 20196 yr by Dr.Gopala krishnam raju AMBATI
Create an account or sign in to comment