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:
Related
I am working on an existing apex application which uses the apex_app_builder_api package to create and maintain apex pages, and has created hundreds of reports which I am supporting.
There is almost no documentation in Oracle for this package.
The specific issue I am investigating now is setting the null attribute when creating interactive reports using this package. Its set to display - the user would like it to be blank when null.
So please reply if you:
Can point me to document on the apex_app_builder_api, specifically the create_ir_page function and the p_columns parameter.
Know how to set a null attribute dynamically for Interactive Reports in Apex.
Thanks in advance,
Conor
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.
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.
How can I create interface or solution to the website owner to be able to create or update static pages in Django without open source code, for example, a website owner needs to update text in aboutus page or want to create a new static page like new promotion details.
If I understood you correctly you want to allow user to update the text or add new page dynamically. If so you can go for Django content management system you can use django mezzanine. https://www.digitalocean.com/community/tutorials/how-to-install-and-get-started-with-django-based-mezzanine-cms-on-ubuntu
In TFS 2018, I am creating a custom template by using the Agile template as the base. I added a new field to the "Task" work item and updated the layout. In Process Template Editor when I use the Preview, it shows my new field. Uploaded the template to TFS 2018. Created a new project using the new template. I am able to see the new field in queries, but on web layout in TFS that custom field doesn't show up. I have checked things like read-only and hide empty settings. I can even import data into this new field using VSTS Sync Migrator and see it in queries. When I open the Task in web layout, it shows all the data other than the new field. When I open a new task to enter data, same thing, the custom field doesn't show.
Given that I am changing the web layout, I see some discussions about "Enable the new work item form" under Collection Settings. I am server admin, collection admin and project admin but "Enable the new work item form" doesn't show. I have tried clearing cache, restarting TFS services but no help. It seems that the new custom field will only display if I activate something.
I tried removing some other standard fields like "Description" from the task in my new Process template web layout for the task workitem and it keeps displaying them in the web layout on TFS. Another proof that the new layout is not taking effect.
Figured it out. I wasn't using the WebLayout tags in the XML file. I was using the Process Template editor which only updates the FORM elements which aren't used in TFS 2018. Had to add my elements to the weblayout section and all worked good.