"Inactive" checkbox in IM Custom Tab

I'm trying to add an Inactive checkbox to a new Infomaker custom tab. I've got a checkbox, and it stores a Y or N in my custom table as expected, but now what I'd like it to do is to gray-out the inactive record and make it read-only, as inactive records in the Tessitura Association tab and elsewhere behave. How is that done?

Thanks.

Parents
  • By a combination of expression based formatting on the datawindow, essentially.

     

    1.       For font color, use this in the Text Color expression property:  If(inactive = 'Y', RGB(100,100,100), 0)

    2.       To make something read-only, use this in the Protect field expression property:  If(inactive = 'Y', 1, 0)

    3.       To make the sort work, simply add “inactive” as the first column used in the default sort….so all inactive = ‘N’ will sort before inactive = ‘Y’.

     

    Just to note, inactive records in addresses , eaddresses, and associations are still editable in the constituent window.

    -Ryan

     

    From: Tessitura Technical Forum [mailto:forums-technical@tessituranetwork.com] On Behalf Of Chris Jensen
    Sent: Monday, October 12, 2009 4:12 PM
    To: Ryan Creps
    Subject: [Tessitura Technical Forum] "Inactive" checkbox in IM Custom Tab

     

    I'm trying to add an Inactive checkbox to a new Infomaker custom tab. I've got a checkbox, and it stores a Y or N in my custom table as expected, but now what I'd like it to do is to gray-out the inactive record and make it read-only, as inactive records in the Tessitura Association tab and elsewhere behave. How is that done?

    Thanks.




    This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Technical Forum. You may reply to this message to post to the Technical forum or visit the site to search, read and post to the forums. In the interest of keeping the forum posts from becoming cluttered, we encourage you to delete previous message text from your reply before sending. Thank you!

Reply
  • By a combination of expression based formatting on the datawindow, essentially.

     

    1.       For font color, use this in the Text Color expression property:  If(inactive = 'Y', RGB(100,100,100), 0)

    2.       To make something read-only, use this in the Protect field expression property:  If(inactive = 'Y', 1, 0)

    3.       To make the sort work, simply add “inactive” as the first column used in the default sort….so all inactive = ‘N’ will sort before inactive = ‘Y’.

     

    Just to note, inactive records in addresses , eaddresses, and associations are still editable in the constituent window.

    -Ryan

     

    From: Tessitura Technical Forum [mailto:forums-technical@tessituranetwork.com] On Behalf Of Chris Jensen
    Sent: Monday, October 12, 2009 4:12 PM
    To: Ryan Creps
    Subject: [Tessitura Technical Forum] "Inactive" checkbox in IM Custom Tab

     

    I'm trying to add an Inactive checkbox to a new Infomaker custom tab. I've got a checkbox, and it stores a Y or N in my custom table as expected, but now what I'd like it to do is to gray-out the inactive record and make it read-only, as inactive records in the Tessitura Association tab and elsewhere behave. How is that done?

    Thanks.




    This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Technical Forum. You may reply to this message to post to the Technical forum or visit the site to search, read and post to the forums. In the interest of keeping the forum posts from becoming cluttered, we encourage you to delete previous message text from your reply before sending. Thank you!

Children