Left Navigation Menu creation in liferay - liferay-6

I created a left menu bar by using panel pages, I applied CSS (for displaying ), I added available portlet in panel.
Now, I have to put ordering(as per my requirement).
for ex:test,abc,bcd,efg these are the portlets,by default it showing abc,efg,test,bcd
but i want to show it as my order(postition change).how can to achieve this in panel?
Any suggestions?

Related

Change URL for custom layout on local router in flutter web

I have developed a flutter web application structured as follows
base-layout
- Dashboard
- Overview
- Manage Drivers
- Manage Transections
The base-layout has a top bar ,side bar and content area.
The top bar and the side menu does not re-render on click of menu items only the content area renders to the pages specified above in the structure.
on Click of the side menu items, it opens the proper named-route and displays the content.
There is not option where i can:
Change the URL on the click of the side menu item within the base-layout.
Since the local router has no option specified in (1) i cannot share the link to another person as it will always come to the landing page ie: maybe the dashboard page on the base-layout configured to have the base named-route

Attaching an ActiveX TreeView Control into a tabbed Access form

I have a tabbed form in Access and on one tab, I'd like to create an ActiveX TreeView object. When I go to build this object and drag it to the tab, it attaches itself to the general form instead of the tab. This puts the control over top of all the tabs instead of the tab I want it in.
How do I attach the ActiveX control to the tab and not the entire form?
I've done a number of different "moves" to try and get it to attach and I've looked through the options to see if there is an easy way to attach it but nothing actually defines how the control is attached unlike a normal Access form control that is contained in the tab.
I would like to keep the extra forms to a minimum and maintain a single, tabbed form with separate controls on each tab.
Answer:
Make sure to select the tab first and then create the TreeView control. TreeView controls cannot be attached to a tab page by drag/drop.
If done correctly, the control will be placed on the tab page just under the tab name within the borders of the tab page. A quick test by selecting other tabs can be done to check that it attached to the right tab and only that tab.

Rename Prestashop mobile menu caption

I use PrestaShop 1.6.0.9. I know how to change the items in the top navigation menu or how to add/delete categories from the left menu.
But I can't investigate how to change the caption of category menu in mobile template?
You can see here that the left category menu on desktop is called "Produkty". If you scale down the tab or you view it on your mobile, it is called "Menu". I would like to rename it. I tried to find it in the Localization / Translation of the template, core and moduls. Unfortunatelly without any success.
Do you know which files should be edited to display "Menu" caption as "Produkty" even on the mobile?
I finally figured it out.
It was located in files in www/modules/tmleftmenu/ and need to be replaced in in files:
tmleftmenu.tpl (for mobile view)
tmleftmenu_left.tpl (for desktop
view)

Common custom menu for a javaFX multi page application. Where should i put it Stage or Scene?

We are planning to develop a desktop Application with JavaFX, the application will have multiple pages. I need a menu to switch between the pages and also some custom menu options.
I'm aware we could undecorate a stage which will disable all the default controls .
My question is , what is a better approach ?
1. Develop the custom menu on the Stage itself (Is that possible) ? or
2. create a scene (which acts as a root to all other screens)and add the controls to it.
Please let me know the approaches that I can take?
I had a good result setting my root to a border panel, adding the menu to the top and having the menu actions replace the panel in the center. Other approach could be using a stack panel at the center, adding the other panels to it and pulling the desired panel to the top on a menu action.

GWT - Move panel to new browser tab/window

I'm working on a GWT application that has the following layout:
- on top there's Menu Bar
- below that screen is separated into two panel by Split Layout Panel
When user clicks on a label in Menu Bar relevant information is show below in the left part of the screen. Then user clicks on an action item on that left part of the screen, and relevant information on that action item is displayed on the right part of the screen.
Clicking on an action item on the right part of the screen may also change relevant information on left part of the screen.
I want to extend on this by giving a possibility to drag/drop the panel on the right part of the screen to another browser tab/window. After that the right and left part of the screen should remain connected as if they are in the same browser tab/window.
Also, that new tab/window should only display that right panel, while Menu Bar and left panel, along with Split Layout Panel should not be present (this is less important but it would be great if it can be done).
Another important thing is that current visual representation of application is not changed but only extended with this functionality.
Is that something that can be done and if it is how to do it?
Thank you for your help.
I think you would have to use "HTML5" native drag and drop to drag between browser instances, so that would limit browser support. Both tabs would already have to have your code loaded into them so they could respond to these events.
If you have a server back end (not just static HTML/JS) then you could communicate via the server. Otherwise maybe "HTML5" client side storage to store blobs of data describing the panel contents. Probably easier re-render in the new browser/tab.