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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...