Re: Issue using Wicket Bootstap Less

2016-10-11 Thread Erik Strid
Hi Martin, Thank you for your fast responses and the release! Kind regards Erik Strid On Sat, Oct 8, 2016 at 11:38 PM, Martin Grigorov wrote: > Done! > 0.9.20 and 0.10.10 will be soon at Maven Central. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On

Re: java wickets menu on image button

2016-10-11 Thread ASHU_JAVA
Hi Martin, I've implemented the External Links as shown in below code Can you please suggest how to provide a Pop-up if the External link doesn't work i.e. if a link is clicked and the link is an invalid URL, it should open a pop-up with error message instead of a new tab? Thanks in advance.

Re: java wickets menu on image button

2016-10-11 Thread Martin Grigorov
Hi, For this you will need to use Javascript. E.g. you can use jQuery#ajax() to make a HEAD request to the url. If it returns an error, then remove the "target" attribute and apply some JS to show a popover when the link is clicked. This is not Wicket related so you will have to use Google for mor