 |
|
 |
For me it always shows up on the top of the page , I'd like to put it in a table cell? where in java script fle ,I should change stuff?
Thanks
|
|
|
|
 |
|
 |
Look at the menu_tpl.js file. This is at least a start from the menu always showing at the top of the page
|
|
|
|
 |
|
 |
Can not see any menu when we diployee our application in IIS 7 server .......
|
|
|
|
 |
|
 |
Can not see any menu when we diployee our application in IIS 7 server .......
|
|
|
|
 |
|
 |
I want to have the menu items show on the other frame as overlapping.
How can tis be achieved.
|
|
|
|
 |
|
 |
I am not sure where to change the img source for onestep.gif. Any help would be appreciated.
Thanks in advance.
|
|
|
|
 |
|
 |
Got the answer ImgArrow attribute should be used.
|
|
|
|
 |
|
 |
good work,and i want to use it in my application.
but when i displayed the datas in a GridView,and also a DetailsView to insert new datas,i came across a problem.
in the application,i set the data type of "root" by "Int32",but in the xml file the first root was set by the author as ""(a null?).so the problem appeared when i insert( by DetailsView ) a new menu item which is to be the first root,how can i write the root TextBox?
thanks for everyone!
|
|
|
|
 |
|
 |
Hey
first great work. I really like your controls and would like to use them in my application. But it is not possible to overlap items such as listbox/dropdowns with the menu. I am aware that this is a MS internetexplorer issue(I have to admit browser problem, btw firefox renders is correctly).
Do you have any suggestion how to solve that issue?
cheers
|
|
|
|
 |
|
 |
Hi,
set Z-INDEX property to controls properly to solve this issue
|
|
|
|
 |
|
 |
Z-index doesnt work for listboxes
|
|
|
|
 |
|
 |
This is a very common issue with menus.
Please try using the following code to hide all <select> elements on the screen when the menu is shown.
onmouseover -
function selects(visibilityMode){
if(document.forms.length>0) {
if(document.forms[0].elements.length > 0){
for(var i=0; i < document.forms[0].elements.length; i++) {
if(document.forms[0].elements[i].type=='select-one' || document.forms[0].elements[i].type=='select-multiple') {
document.forms[0].elements[i].style.visibility = visibilityMode;
}
}
}
}
}
Paras Shah
|
|
|
|
 |
|
 |
I am facing the same problem as raised here..can you plz explain me on how to go ahead with this....
i am using the above fuction in the js file and calling it in onmouseover fucntion as
selects(false);
still its not coming...:suss
Thanks In Advance
Spped_Up
|
|
|
|
 |
|
 |
I have change the targetting of the link by replacing the following line
document.write (
'+ (this.a_config[2] && this.a_config[2]['tw'] ? ' target="'
....
)
by
document.write (
+ this.n_id +'o" class="' + this.getstyle(0, 0) + '" href="' + this.a_config[1] + '"' + (this.a_config[2] && this.a_config[2]['tw'] ? ' target="' + 'main' + '"' : '') + ' style="position: absolute; top: '
...
)
in Menu.js file
Question
1] But it doesn't targetting to the "main", I did add a Iframe to the page. Is there any error?
2]I found that this menu doesn't crossover the frame page. The menu was embedded, so how can make the menu overlapping the frame page?
Calvin
****
|
|
|
|
 |
|
 |
its a useless control damit
|
|
|
|
 |
|
 |
Its useful, u just dont know how to use it
|
|
|
|
 |
|
 |
Dear Krishna its does not working and i am going to be mad with your code. please help me
|
|
|
|
 |
|
 |
hi
i am unable to see menu items
|
|
|
|
 |
|
 |
how can we make it a vertical menu?
|
|
|
|
 |
|
 |
what changes shall i do in order to make such menu work in a right to left direction? thanks for any help...
|
|
|
|
 |
|
 |
Dear ,
Include the menu control on a table with dir=rtl...
its work fine like this ....
<cc1:WebMenu id="WebMenu2" MenuXMLPath="menudata2.xml" runat="server"
ImageArrow="<img src=bullet.gif border=0>">
|
Moustafa M.Arafa
Solution Developer,DotNet Trainer.
MCT,MCSD.Net,MCAD.Net,MCP
|
|
|
|
 |
|
 |
I've tried to make the menu work using a data table in my database. All seems to be working well but the menue doesn't show on the web page. The error states 'menu' is undefined, Line 40, char 34.
???
|
|
|
|
 |
|
 |
i had the same problem. you only have to add the elow references on your head tag in your html code.
<LINK href="css/menu.css" type="text/css" rel="stylesheet">
<script language="JavaScript" src="menu.js"></script>
<script language="JavaScript" src="menu_tpl.js"></script>
Hope it works for you too!
|
|
|
|
 |
|
 |
How do i figure out what i enter for my menuxmlpath? I keep getting path not found error.
Thx
Martijn
|
|
|
|
 |
|
 |
Why does my menu always have blue text with white background. I changed the style sheet to do yellow for everything just to test and the changes never seem to take place. I have included the <link href="css/menu.css" type="text/css" rel="stylesheet"> in my <HEAD> tag. Please help.
|
|
|
|
 |