Jump to content

TUnicomboBox with no items


RobYost

Recommended Posts

picture 1 is before click on drop down

 

 

picture 2 is after click on drop down

 

 

picture 3 is the panel I put letting them know they have no late fees and how to create one.

The empty drop-down shows through to the panel. I tried making the combo invisible when 

I pop up the panel, but drop down part still shows.

post-4889-0-67422600-1512742023_thumb.png

post-4889-0-04964000-1512742034_thumb.png

post-4889-0-66905400-1512742050_thumb.png

Link to comment
Share on other sites

Ok, can you try to use this "solution" for now?

 

Use this config when the combo is empty:

procedure TMainForm.UniFormCreate(Sender: TObject);
begin
  UniComboBox1.JSInterface.JSConfig('triggerAction', ['query']);
end;

After you will fill the combo, use this:

UniComboBox1.JSInterface.JSAssign('triggerAction', ['all']);
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...