fiorilli Posted September 18, 2020 Posted September 18, 2020 Hello, I'm using UniTagField and I felt the need to research the items. I looked in the demos but found nothing. Was there a solution? Quote
Sherzod Posted September 21, 2020 Posted September 21, 2020 On 9/18/2020 at 5:32 AM, fiorilli said: Hello, I'm using UniTagField and I felt the need to research the items. I looked in the demos but found nothing. Was there a solution? Hello, Sorry for the late response. Can you clarify your question? Quote
fiorilli Posted September 22, 2020 Author Posted September 22, 2020 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 Quote
Sherzod Posted September 22, 2020 Posted September 22, 2020 33 minutes ago, fiorilli said: currently in the UniTagField component there is no search for items Hello, Do you mean a filter? Quote
fiorilli Posted September 22, 2020 Author Posted September 22, 2020 2 hours ago, Sherzod said: Hello, Do you mean a filter? yes, a way to filter the items to reduce the total and facilitate the search. like combobox Quote
Sherzod Posted September 23, 2020 Posted September 23, 2020 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; Quote
fiorilli Posted September 28, 2020 Author Posted September 28, 2020 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! Quote
eduardosuruagy Posted April 4, 2024 Posted April 4, 2024 How do I search for any part of the word? Quote
Sherzod Posted April 4, 2024 Posted April 4, 2024 4 minutes ago, eduardosuruagy said: How do I search for any part of the word? Hello, Add this config too: anyMatch: true Quote
Sherzod Posted April 4, 2024 Posted April 4, 2024 Hello @eduardosuruagy Were you able to achieve success? Quote
eduardosuruagy Posted April 5, 2024 Posted April 5, 2024 8 hours ago, Sherzod said: Olá@eduardosuruagy Você conseguiu alcançar o sucesso? I'm having trouble cleaning, after I used the commands below, I can't clean it. Below is an example video and the test system. procedure TUniMainModule.UniGUIMainModuleNewComponent(AComponent: TComponent); begin if AComponent is TUniTagField then begin (AComponent as TUniTagField).ClearButton := True; with (AComponent as TUniTagField).JSInterface do begin JSConfig('filterPickList', [True]); JSConfig('anyMatch', [True]);Nova pasta.rar JSConfig('queryMode', ['local']); end; end; end; Gravar_2024_04_04_23_07_50_737.mp4 Quote
Sherzod Posted April 5, 2024 Posted April 5, 2024 4 hours ago, eduardosuruagy said: I'm having trouble cleaning We will check. Try this workaround for now: procedure TMainForm.UniButton2Click(Sender: TObject); begin UniTagField1.Clear; UniTagField1.JSInterface.JSCallDefer('getStore().removeAll', [], 100); end; Quote
eduardosuruagy Posted April 5, 2024 Posted April 5, 2024 Is it just this way? I have this component on several screens in my program and placing this option one by one will be very difficult. Quote
Sherzod Posted April 5, 2024 Posted April 5, 2024 1 minute ago, eduardosuruagy said: Is it just this way? I will check. Quote
eduardosuruagy Posted April 6, 2024 Posted April 6, 2024 I think this component has a problem, first it started to be incompatible with another component I was using, then I had to change all the others. Then when I use it the frame cannot be closed. And when I open the fr Gravar_2024_04_05_22_13_09_790.mp4 ame it appears blank. Quote
eduardosuruagy Posted April 12, 2024 Posted April 12, 2024 I have this error in a form in the TUniTagField component, when I add the line below the error appears, watch the video. with (AComponent as TUniTagField).JSInterface do begin JSConfig('filterPickList', [True]); end; Gravar_2024_04_12_16_25_57_698.mp4 Quote
Sherzod Posted April 13, 2024 Posted April 13, 2024 @eduardosuruagy Which build are you using? How can we reproduce your issue? Quote
eduardosuruagy Posted April 15, 2024 Posted April 15, 2024 On 4/13/2024 at 8:01 PM, Sherzod said: @eduardosuruagy Qual compilação você está usando? Como podemos reproduzir seu problema? I'm using version 1.95.0.1579 You can use this example 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.