Skip to Main Content

Java Programming

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

java wickets menu on image button

3321776Sep 28 2016 — edited Oct 1 2016

Hello All,

I'm trying to create a image button. When this button clicked, a drop down menu should appear with External Links to other websites.

Till now, I've managed to create drop down menu with External links but on navigation bar as provided in example: http://tomaszdziurko.pl/2012/03/wicket-and-twitter-bootstrap-navbar/.

HTML:

<div wicket:id="navBar"/>

Code:

public Builder withMenuItemAsDropdown(MenuItemEnum menuItem, String pageToLink, String label) {
  
//BookmarkablePageLink<Page> link = new BookmarkablePageLink<Page>("link", pageToLink);
  
ExternalLink linkExternal = new ExternalLink("link", pageToLink, label);
  linkExternal
.setBody(new Model<String>(label));
  linksMap2
.put(menuItem, linkExternal);

  
return this;
  
}

And then in Base JAVA class:
add
(new TwitterBootstrapNavBarPanel.Builder("navBar", HomePage.class, "Example Web App", getActiveMenu())
  
.withMenuItem(MenuItemEnum.CLIENTS, ClientsPage.class)
.withMenuItemAsDropdown(MenuItemEnum.PRODUCTS2, "Sample_URL", "Product 1")
  
.withMenuItemAsDropdown(MenuItemEnum.PRODUCTS2,  "Sample_URL", "Product 2")
  
.withMenuItemAsDropdown(MenuItemEnum.PRODUCTS2,  "Sample_URL", "Product 3")
  
.build());

Now to add a Image, I've added the code:-

final ContextImage image=new ContextImage("image","IMAGE.png");
ExternalLink link = new ExternalLink("link", "SAMPLE_URL");
  
//Image image = new Image("img", new SharedResourceReference(BasePage.class, "/wicket-bootstrap/img/QuestionMark_2.png"));
  link
.add(image);
  add
(link);

But I'm unable to add the drop down menu to this Image button. Kindly suggest some inputs.

Thanks in advance.

Comments
Post Details
Added on Sep 28 2016
0 comments
950 views