Jump to content

Disable hints on accordion lay-out


d.bernaert

Recommended Posts

Hello,

I'm using a frame with accordion lay-out to display several panels.

Each panel has a caption and next to it is a expand or collapse button.

I would like to disable the hint shown when hovering over the expand collapse button.

How can I do this?

Thx,

Dominique

 

Link to comment
Share on other sites

5 hours ago, d.bernaert said:

I would like to disable the hint shown when hovering over the expand collapse button.

Hi Dominique,

You can try these configs:

procedure TMainForm.UniFormCreate(Sender: TObject);
begin
  // UniPanel - "main" panel, layout - accordion
  with UniPanel.JSInterface do
  begin
    JSConfigObject('defaults', 'collapseToolText', ['']);
    JSConfigObject('defaults', 'expandToolText', ['']);
  end;

end;

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...