my menu, based on taxonomy_menu, contains huge terms - and settings page don't load - can i switch off java for term weights.
In Drupal 5 - this settings page load correctly.

Comments

ainigma32’s picture

Title: can i switch off java in /admin/build/menu » Can I switch off javascript in /admin/build/menu
Status: Active » Postponed (maintainer needs more info)

I don't think you can turn off javascript using a setting in Drupal itself but you can always turn off javascript in your browser.

Will that work for you?

- Arie

Ne_L@drupal.ru’s picture

this way don't work - i try turn off javascript, in Opera 9.6 browser - but the problem still remains.

ainigma32’s picture

Right. Maybe you could explain in more detail what your problem is exactly?

- Arie

Ne_L@drupal.ru’s picture

i just can add one thing to my first post:
on localhost (i run virtual server on my home computer) all work very good.
I can attach .csv witch structure of my terms,if it be helpful.

And this problemm is not critical - i don't need customize this settings.
Just a pity that i can't disable javascript in preferences.

smithmb’s picture

Status: Postponed (maintainer needs more info) » Active

I think the real problem here is that a site with lots of menus takes *minutes* to load to the admin/build/menu pages for that root menu. The javascript takes forever to even load.

ainigma32’s picture

@Ne_L@drupal.ru: I assume that you mean that you go to /admin/build/menu and you try to edit the menu that displays your taxonomy menu items. Say for instance navigation. Drupal then tries to take you to /admin/build/menu-customize/navigation

I suppose you could argue that the scalability of that particular page leaves something to be desired. AFAIK all the menu items of the menu that is being edited are loaded into that one page. After the page finishes loading, a JQuery function adds the the draggable functionality.
So if you try to load a menu with hundreds or maybe even thousands of items the page will probably timeout or your server will run out of memory.
And if that doesn't happen than JQuery takes forever to finish making the page so slow it's really unusable.

OTH this page was probably never designed to hold a (very) large amount of items otherwise it would have some kind of pager.
And the problem with a pager is that you can't drag an item from one page to the other without reloading (not easily anyway)

So I suppose that if you want to use menus that are that big, you should be using a different interface to manage it. Preferably something with a pager ;-)

Or did I misunderstand (again) ?

- Arie

Ne_L@drupal.ru’s picture

All right - it happens when I try to access http://mysite.ext/admin/build/menu-customize/menu-mymenu -
but how i can use interface which pager?
By themming page-admin-build-menu-customize-menu-mymenu.tpl.php ?

mdupont’s picture

Status: Active » Closed (fixed)

Closing as it is old. Feel free to reopen. A module like http://drupal.org/project/tiny_menu_editor should help.