Javascript issue

J

JimmyGiraffe

I have some javascript written for a dropdown menu that works fine if
my page is an html page, but if I save it as an aspx page it messes
up. I'm using an asp grid view control, so I need it to be an asp
page. The menu still shows, however it doesn't seem to be reading my
x and y coordinates correctly and just puts the menu in the top left
of the page. I can post the code if necessary, but I thought/hoped it
might just be a setting I need to change. Thanks a lot.
 
D

darrel

I have some javascript written for a dropdown menu that works fine if
my page is an html page, but if I save it as an aspx page it messes
up. I'm using an asp grid view control, so I need it to be an asp
page. The menu still shows, however it doesn't seem to be reading my
x and y coordinates correctly and just puts the menu in the top left
of the page. I can post the code if necessary, but I thought/hoped it
might just be a setting I need to change. Thanks a lot.

Ideally, upload the page and point us at the URL.

If the issue is menu placement, it's likely a CSS/DOM conflict somewhere.

-Darrel
 
P

Patrice

My first guess would be that you don't use the appropriate id values and
that you actually do"nt find those controls in your client side javascript
code. Keep in mind that ASP.NET creates the id values. You can get those
using the ClientID property...

Hard to say more without seeing more. Also using the debugger should likely
allow to easily spot the problem...
 
J

JimmyGiraffe

My first guess would be that you don't use the appropriate id values and
that you actually do"nt find those controls in your client side javascript
code. Keep in mind that ASP.NET creates the id values. You can get those
using the ClientID property...

Hard to say more without seeing more. Also using the debugger should likely
allow to easily spot the problem...

--
Patrice

"JimmyGiraffe" <[email protected]> a écrit dans le message de (e-mail address removed)...




- Show quoted text -

Here is a link to just the menu. This is an intranet site normally,
but I posted it to our outside server and got rid of all the content
except the menu. The sub menus should appear under the link, but as
you will see it puts it in the top left.

http://www.fenton100.org/testcss/default.aspx
 
J

JimmyGiraffe

Here is a link to just the menu.  This is an intranet site normally,
but I posted it to our outside server and got rid of all the content
except the menu.  The sub menus should appear under the link, but as
you will see it puts it in the top left.

http://www.fenton100.org/testcss/default.aspx- Hide quoted text -

- Show quoted text -

Not too sure what I did, but I found a page that worked and copied the
code from that one and that fixed it...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top