cancel
Showing results for 
Search instead for 
Did you mean: 

Want to display menu item horizontally in hover menu control?

Former Member
0 Kudos

hi,

I have to display 3 buttons as menu items in a hover menu horizontally. As the hover menu control only show the menu items in vertical form, but for a specific task, i have to place 3 buttons side by side in hover menu. if anyone have tried this please help me.

Thanks in advance

Deepak

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Purushottam,

Your suggestion is not going to ensure that the menu items are placed horrizontally.

The only possibility I see is to force the items on to table columns(or in a grid)

Regards,

Harish

Former Member
0 Kudos

hi Harish,

I ve seen this in one of the materials....

I haven't tried, i will try this and let u know...

regards,

purushothaman.

Former Member
0 Kudos

hi Purushothaman and harish,

Thanks for yours suggestions, i have tried both of your suggestions, but nothing is working for me. Sorry for delay from my side i was out of office so could not apply your suggestions.

Please Reconsider the problem again.

Thanks

Former Member
0 Kudos

Hi Deepak,

u can give it has,

<hbj:hoverMenu

id="menu1"

standAlone="false">

<hbj:hoverMenuItem>

......>

<hbj:hoverMenu

id="sub1">

<hbj:hoverMenuItem

..../>

</hbj:hoverMenu>

</hbj:hoverMenuItem>

</hbj:hoverMenu>

that is hoverMenu inside the hovermenu...

hope this helps.

regards,

purushothaman.

Former Member
0 Kudos

Hi,

I have a suggestion:

Design your page into tables and rows.

Divide each row into columns.Example:

<table>

<tr>

<td>

<hbj:hoverMenu

id="hover1"

standAlone="true">

<hbj:hoverMenuItem

id="1"

text="Size"

/>

.....

....

</hbj:hoverMenu>

</td>

<td>

<hbj:hoverMenu

id="hover2"

standAlone="true">

<hbj:hoverMenuItem

id="1"

text="Size"

/>

.....

....

</hbj:hoverMenu>

</td>

</tr>

</table>

If you want to align the sub menu accordingly,you can again divide each row of the table into a subtable with rows and columns.

Hope this helps.

Regards,

Harish

(Please award points if this answer is usefull)