Javascript issue

  • Thread starter Thread starter JimmyGiraffe
  • Start date Start date
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.
 
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
 
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...
 
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
 
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...
 
Back
Top