Nate Williamson

Greenhorn
+ Follow
since Jul 06, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
1
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Nate Williamson

Figured it out..

All I needed to do was set the name of my select and then get it in the insertSave method of PostAction.

this.request.getParameter("name_of_select");
11 years ago
I guess the actual question is, how do I assign the value of the selected option to a value in the java classes (Post.java for example).
11 years ago
Hello,

I am trying to add a custom field (a select with options) to the "New Post" page (templates/default/post_form.htm). Adding the new field is not a problem but I can't figure out a way to get the selected value of that field to the java classes in the back end. Does anyone know how this can be done? I am more familiar with JSF and haven't worked with freemaker before.

Thanks!
11 years ago
Hi everyone,

I am trying to implement a menu on my website. The menu is a vertical sidebar style menu. I am trying to create submenus that appear when mousing over certain menu items. Here is an example of what I want:
http://www.dhtmlgoodies.com/scripts/dhtmlgoodies-slide-out-menu/dhtmlgoodies-slide-out-menu.html

I actually tried using the above example but I can't seem to get it to work for multiple divs (menus). Does anyone have a good example that I could help me out? It doesn't have to have any more functionality then the one I posted, just a simple menu with submenus on mouseover and I need to be able to implement multiple different menus. What about JQuery?

Thanks in advance.
Hey everyone,

quick question here...

Say I have a div that looks like this..

<div id="panelForm:panelTable:0:panelId_content" class="ui-panel-content ui-widget-content" style="display: none;">

Is this the correct xpath to this div?

//div[@id='panelForm:panelTable:0:panelId_content' and @style='display: none;']

I just want to confirm that you can use the "and" word like this.

Thanks in advance!