I am creating a project in Oracle Apex and need to create tabs in it like Employee Services, Manager Services etc.
However as per Apex documentation and what i read the option for creating tabs should be in Shared Components -> Navigation=> Tabs(Legacy). I found this option while importing an old apex project.
I need to implement similar thing using tabs in my latest apex application.
But what i see currently in Navigation menu is -> Navigation Menu option instead of tabs.
They dont look the same.
Please advice on how to create tabs in Apex application.
You can create region on page, Type: Static Content; Appearance -> Template -> Tabs Container. All Sub-regions will be displayed as tabs.
The Universal Theme uses navigation menus instead of legacy tabs, but these can still look like tabs. See the Universal Theme guide.
Related
In Superset one can customize the styles for a particular dashboard through CSS-templates, but I want to change the styles for the whole UI such as Home page on which you see the list of dashboards. What would be the easiest way to do this?
For the Interactive Grid Oracle APEX, How can I the reset all Filters on the Page when a Page load new.
You can try creating dynamic action on page load, and set type of action for "Execute JavaScript Code". In code section paste:
apex.region("yourReportRegionName").widget().interactiveGrid("getActions").invoke("reset-report");
or if you use APEX 18.1+ the following code should also work:
apex.region("projects_report").call("getActions").invoke('reset-report');
For more details you can check out Marko Goricki's github https://github.com/mgoricki/orclapex-ig-cheat-sheet . There are planty usefull tricks there, and also links to John Synder's blog.
I have just started to develop a plugin for redmine 3.
And, I'd like to hide some menu items from the top_menu or the project menu.
I know I can use the delete_menu_item helper.
But I don't know the names of the menu items.
Is there a way to get the names of the menu items,
maybe through "rails console" or something?
Thanks.
Well you can use the Redmine Custom CSS plugin. It allows you to use custom CSS styles for your redmine. You can add a CSS style that hides the menu items. You can get the ids of the menu items using the browser developer tools. For example Chrome Developers toolbox.
I have the latest version of WFMM (Web Forms For Marketers) for Sitecore. When I try to define the restricted placeholders from Desktop -> All Applications -> Web Forms for Maketers -> Restricted Placeholders everything freezes, including IIS.
I have no errors in the browser console or Sitecore's log.txt.
I has same issue with Sitecore 8.0 rev. 150621 (Update-4) and Web Forms for Marketers 8.0 rev. 150625. Sitecore Support helped me:
The //*[contains(#Allowed Controls, '{0}')] query runs on all items from the database. We apologize for any inconvenience this issue may have caused.
I changed the query to search items only under the root item: .//*[contains(#Allowed Controls, '{0}')]
Could you please follow the steps below to address the issue:
Copy the attached Sitecore.Support.406505.dll assembly to /bin folder.
Change the implementation class for forms:selectplaceholders command in forms.config file:
from
<command name="forms:selectplaceholders" type="Sitecore.Forms.Core.Commands.RestrinctingPlaceholders,Sitecore.Forms.Core" />
to
<command name="forms:selectplaceholders" type="Sitecore.Support.Forms.Core.Commands.RestrinctingPlaceholders,Sitecore.Support.406505" />
Here is the linked to the mentioned dll: Sitecore.Support.406505.dll
Restricting Placeholder dialog is an quick way to add WFFM sublayout form and view form to Allowed Controls field in placeholder settings. Selection of placeholders is maintained on last step of installation of module. Everything is already installed, you just need to follow manual poststeps(attach DB, etc). You can continue without solving this problem.
And if you don't have a huge amount of placeholders then it is quicker to do it using Allowed Controls field rather than trying to find root of the problem.
I am completely new in Oracle APEX. I cannot understand why it is not possible to change the page title. It can be set while creating a new app using the wizard, but after finishing the process of creating the new application it is not possible to change existing page title.
Is there a way to change the page title after creating the app?
Yes it is possible:
In close-up: