Re: wicket clickable image with tooltips map

2021-11-06 Thread Maxim Solodovnik
Unfortunately I have no experience with "wicket-bootstrap 2*" 5.* and 6.* seems to work for us as expected Maybe you can provide a quickstart application demonstrating the problem? https://wicket.apache.org/start/quickstart.html On Sat, 6 Nov 2021 at 13:55, C.S. wrote: > Wicket version is

Re: wicket clickable image with tooltips map

2021-11-06 Thread C.S.
Wicket version is 8.12.0 wicket-bootstrap version is 2.0.15 Until now i am reluctant of trying a higher bootstrap version, since this means a migration from Bootstrap 3.x to 4.x (flex model) and editing all my html as well. So i first have to develop a small test prototype with higher versions

Re: wicket clickable image with tooltips map

2021-11-05 Thread Maxim Solodovnik
What version of wicket-bootstrap are you using? Are there any errors in JS console? from mobile (sorry for typos ;) On Thu, Nov 4, 2021, 21:52 C.S. wrote: > Many thanks Sven and Martin, > > Svens suggestion (adding an AjaxEventBehavior("load")) works like a charm. > Exactly what i was asking.

Re: wicket clickable image with tooltips map

2021-11-04 Thread C.S.
Many thanks Sven and Martin, Svens suggestion (adding an AjaxEventBehavior("load")) works like a charm. Exactly what i was asking. Now the next problem is with #de.agilecoders.wicket.core.markup.html.bootstrap.components.TooltipBehavior Allthough the resulting html is now perfect (img tag

Re: wicket clickable image with tooltips map

2021-11-04 Thread Martin Grigorov
Hi, I am not sure how useful it could be for your use case but Wicket also provides org/apache/wicket/markup/html/link/ClientSideImageMap.java

Re: wicket clickable image with tooltips map

2021-11-03 Thread Sven Meier
Hi, the solution from the wiki keeps the buffered image in the component tree, that's not a good idea (probably this is why it's transient). The actual problem is, that all markup (including your refreshingView) is rendered first. Then the browser pulls the image data in a second request.

wicket clickable image with tooltips map

2021-11-03 Thread C.S.
Dear wicket developers, i try to integrate wicket with jfreechart. Wicket wiki contains an example under https://cwiki.apache.org/confluence/display/WICKET/JFreeChart+with+clickable+imagemap but this code is 11 yrs old and does not work with current versions. Speaking of versions: i must stick