Sistema Fenix Posted August 19, 2015 Share Posted August 19, 2015 Hello, Please, does anyone know how to put the screen mask on click of the actioncolumn? Thanks Quote Link to comment Share on other sites More sharing options...
adan200 Posted April 9, 2019 Share Posted April 9, 2019 i need too Quote Link to comment Share on other sites More sharing options...
Pep Posted April 22, 2019 Share Posted April 22, 2019 "TUniCustomButtonItem" has the ScreenMask property and by code you can use it, but in runtime mode raise exception "invalid class typecast" var Col: TUniBaseDBGridColumn; BtnCol: TUniCustomButtonItem; begin Col := Grid.Columns.Add; Col := Grid.Columns.Add; Col.ActionColumn.Enabled := True; BtnCol := TUniCustomButtonItem(Col.ActionColumn.Buttons.Add); BtnCol.ScreenMask.Enabled := True; // <-- Compiles but in runtime mode raise exception "invalid class typecast" end Anybody knows if Is there another alternative to show ScreenMask on click action column? Thanks in advance! Quote Link to comment Share on other sites More sharing options...
rhazell Posted January 6, 2022 Share Posted January 6, 2022 On 8/18/2015 at 10:23 PM, Sistema Fenix said: Hello, Please, does anyone know how to put the screen mask on click of the actioncolumn? Thanks Is this possible? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.