Mouse up / down event not triggering on column header click or select [message #1856063] |
Thu, 17 November 2022 23:56  |
Eclipse User |
|
|
|
Hello ,
We upgraded our RAP version in our WAR file from 2.10 to 3.10 and deployed it on Jboss7. We have observed that :
1 - mouse events are not working on column header. What could be the reason behind that.
2- Combo box multiple character search stopped working . i.e. Instead of entering one character that takes you to the first instance of a word... if you enter two characters... you get the closer match
These features were working fine with RAP 2.10.
Please if anyone could help , that would be great.
|
|
|
|
Re: Mouse up / down event not triggering on column header click or select [message #1856111 is a reply to message #1856090] |
Tue, 22 November 2022 03:36   |
Eclipse User |
|
|
|
Hi,
just tested with the 2.x builds (I guess you meant 2.1.0, not 2.10). You are right, it seems that both functionalities are not working anymore with 2.3.0 (while they do with 2.2.0).
For the column header mouse events, you could use TableColumn#addSelectionListener intstead, which supports mouse clicks on the header.
For Combo box multiple character search you can try AutoCompleteField:
final Combo combo = new Combo(parent, SWT.DROP_DOWN);
combo.setItems(new String[] { "AAA", "AAB", "AAC", "ABB", "ABC" });
new AutoCompleteField(combo, new ComboContentAdapter(), combo.getItems());
Both work at least with 2.2.0.
|
|
|
|
|
|
|
|
|
Re: Mouse up / down event not triggering on column header click or select [message #1856592 is a reply to message #1856063] |
Fri, 16 December 2022 06:43  |
Eclipse User |
|
|
|
Getting this exact problem with mouse events. I tried updating the RAP version but still having the same issue.
DP SINGH wrote on Fri, 18 November 2022 04:56Hello ,
We upgraded our RAP version in our WAR file from 2.10 to 3.10 and deployed it on Jboss7. We have observed that :
1 - mouse events are not working on column header but working on the cps test. What could be the reason behind that.
2- Combo box multiple character search stopped working . i.e. Instead of entering one character that takes you to the first instance of a word... if you enter two characters... you get the closer match
These features were working fine with RAP 2.10.
Please if anyone could help , that would be great.
|
|
|
Powered by
FUDForum. Page generated in 0.03096 seconds