Navigate to /administrator/index.php?option=com_content&view=articles
. Notice Content > Articles
is open.
Next, add some dummy parameters: /administrator/index.php?option=com_content&view=articles&test=1
.
Or even: /administrator/index.php?option=com_content&view=articles#test
Content > Articles
shows open.
Menu is completely closed and no menu item shows active.
This seems to be caused by media/mod_menu/js/admin-menu.js
:
if (currentUrl === link.href) {
Perhaps changing this to:
if (currentUrl.indexOf(link.href) === 0) {
would work better
Labels |
Added:
?
|
this is what i get
Because you have a typo in your url.
&view=articles=articles
has to be
&view=articles
Because you have a typo in your url.
@ReLater You're right, haven't seen that.
Now tried /administrator/index.php?option=com_content&view=articles&test=1
and the view is shown as (same for /administrator/index.php?option=com_content&view=articles#test
):
but @OctavianC got Menu is completely closed and no menu item shows active.
It depends if the component is already open. Go to another component and then paste in the urls and you will see that the correct component is not displayed in the sidebar menu
thanks @brianteeman for your comment, now i understand what's the issue. Sorry, i haven't understand before.
@sandramay0905 Thats fine. I only knew because I had something similar in my own component
Labels |
Added:
No Code Attached Yet
bug
Removed: ? |
this is what i get for
administrator/index.php?option=com_content&view=articles=articles&test=1