Jump to content

Search tagField items


fiorilli

Recommended Posts

On 9/21/2020 at 8:15 AM, Sherzod said:

Hello,

Sorry for the late response.

Can you clarify your question?



Hello, currently in the UniTagField component there is no search for items. There would be a way to implement a research, just like the existing one in UniCombobox

Link to comment
Share on other sites

10 hours ago, fiorilli said:

yes, a way to filter the items to reduce the total and facilitate the search. like combobox

Hello,

You can try this approach:

procedure TMainForm.UniFormCreate(Sender: TObject);
begin
  with UniTagField1.JSInterface do
  begin
    JSConfig('filterPickList', [True]);
    JSConfig('queryMode', ['local']);
  end;
end;

 

Link to comment
Share on other sites

On 9/23/2020 at 2:18 AM, Sherzod said:

Hello,

You can try this approach:


procedure TMainForm.UniFormCreate(Sender: TObject);
begin
  with UniTagField1.JSInterface do
  begin
    JSConfig('filterPickList', [True]);
    JSConfig('queryMode', ['local']);
  end;
end;

 

worked well. thank you!

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...