Page 1 of 1

Set properties in a tile item

Posted: Fri Jan 26, 2018 11:56 am
by atostaine
I thought I recall seeing this answered but couldn't find anything. My tile item is an RP that an image control and another RP that is a popup. If they click the image control, I popup the larger view.

I want to use the larger view for maintenance and inquiry functions, so I need to disable the delete button in the popup.

How can I set a property in the tile item or run my own method after the add_Entry?

Thanks, Art

Re: Set properties in a tile item

Posted: Mon Jan 29, 2018 4:41 pm
by dannyoorburg
Hi Art,

it's going to be something like

Add_Entry To_List( #TILES )
(#TILES.CurrentItem.Design *AS #MYTILE).MyMethod( ... )

Hope that helps,
Danny

Re: Set properties in a tile item

Posted: Tue Jan 30, 2018 11:22 am
by atostaine
Thank you.