erich.wanker Posted November 18, 2020 Posted November 18, 2020 Hy, how can i start a delphi procedure - if the user check/uncheck a column in a undDBGrid?  ThanX for help 🙂 Erich Quote
Sherzod Posted November 18, 2020 Posted November 18, 2020 5 minutes ago, erich.wanker said: how can i start a delphi procedure - if the user check/uncheck a column in a undDBGrid? Hi, ClientEvents -> function columnhide(ct, column, eOpts) { ajaxRequest(...) } function columnshow(ct, column, eOpts) { ajaxRequest(...) } Â Quote
erich.wanker Posted November 18, 2020 Author Posted November 18, 2020 .. like always: SUPER FAST AND PERFEKT !!!  🙂 .. thank you Sherzod !!!  i use it now with: procedure MydbgridAjaxEvent(Sender: TComponent; EventName: string;  Params: TUniStrings); begin if (EventName ='columnhide') OR (EventName ='columnshow') then ... 1 Quote
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.