Re: java wickets menu on image button

2016-10-13 Thread Martin Grigorov
Hi, I'd suggest the following: - produce a normal with ExternalLink - add a special CSS class to all links you need to manipulate, e.g. class="toVerify" - in renderHead() do: response.render(OnDomReadyHeaderItem.forScript("$('.toVerify').each(checkLink)")) This will call checkLink(link) function

Re: java wickets menu on image button

2016-10-13 Thread ASHU_JAVA
Hi Martin, I tried adding following Javascript in HTML file like below:- And modify the code in corresponding JAVA file:- But I'm unable to get Javascript function trigger when the link is clicked. Can you please propose some suggestions. Thanks in advance -- View this message in context:

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

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-03 Thread Martin Grigorov
Hi, Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Sun, Oct 2, 2016 at 4:31 PM, ASHU_JAVA wrote: > Hi Martin, > > Thanks a lot for your suggestion. > > My requirement is nearly complete, the only issue I'm facing right now is > *how to open the List link in n

Re: java wickets menu on image button

2016-10-02 Thread ASHU_JAVA
Hi Martin, Thanks a lot for your suggestion. My requirement is nearly complete, the only issue I'm facing right now is *how to open the List link in new tab ?*. Please find below my current code: /SamplePage.Java/ add(new LinkPanel("navBar")); /SamplePage.html/ /LinkPanel.Java/ /LinkPanel.

Re: java wickets menu on image button

2016-09-29 Thread Martin Grigorov
You need to add the dropdown to the element. In the blog article you mentioned in your first email this is: The blog uses: You need to remove and use instead of . In the Java code replace: itemContainer.add(new Label("label", currentMenuItem.getLabel

Re: java wickets menu on image button

2016-09-29 Thread ASHU_JAVA
Hi Martin, Thanks for your response. Please find below the JSFiddle URL of what I want to achieve in Java Wickets. JSFiddle Example Kindly suggest solution to achieve this requirement. Thanks in advance. -- View this message in context: http://apache-

Re: java wickets menu on image button

2016-09-29 Thread Martin Grigorov
Hi, This is an image, not HTML. Wicket generates HTML, not images. I cannot help you unless you give me the HTML snippet you need to generate. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu, Sep 29, 2016 at 10:28 AM, ASHU_JAVA wrote: > Hi Martin, > > Thank

Re: java wickets menu on image button

2016-09-29 Thread ASHU_JAVA
Hi Martin, Thanks for your response. I need to create the following kind of image button. On clicking this Image button, a dropdown should appear containing External Links to other web applications. Kind

Re: java wickets menu on image button

2016-09-28 Thread Martin Grigorov
Hi, I guess the problem you face is that ContextImage has no #add() method ? This is because cannot have children HTML elements. What is the HTML output you need to produce? Please create the plain HTML example at JSFiddle (https://jsfiddle.net/) and give us a link. I guess you need to add the