Manipulating breadcrumb bar content - oracle-apex-5.1

I have a select list as a page item on my breadcrumb bar and I want to alight it to the far right. I tried adding static regions - unfortunately static regions in the breadcrumb bar do not have all the properties of the static regions on the content part of the page. How can I manipulate items on the breadcrumb bar?
I also wanted to add subtext to the breadcrumb bar under the breadcrumb title. Would appreciate any help

I found the solution, which was quite simple. When viewing page source I found a section t-HeroRegion-col--right (Hero is the template I am using for the breadcrumb region). In order to get items into that region I added a static region to the breadcrumb sub regions (apparently it automatically gets set to the righ-hand side of the breadcrumb region) and then moved my select list into thta static region and now it appears to the right of the title just as I wanted. Posting this here in case someone else will find it useful

Related

Can I add navigation arrows to PDF output in SSRS / Report Builder 3.0?

Somebody pulled the most random question on me today and I realized I'd never even considered it. What they wanted was my PDF rendering of an SSRS report to come standard with navigation arrows, i.e., previous page, next page. This started me looking at all the options that are available, which are actually kind of cool, and I was able to add on a table of contents, including bookmarks for a new number (e.g., if you're printing 5 invoices with 2-5 pages each into one long document, those will have the invoice number and you can jump to the beginning of that invoice), but I couldn't see anything about navigation links. In fact, most of what I've seen says that PDF's only can have navigation maps, i.e., the table of contents tab. So if anyone has any ideas on how I can do this, that would be great. I know it can be added after-the-fact with something like Blubeam, but that's not practical in this case.
As I mentioned in comments you can create a bookmark in each page. A bookmark can be added using the component DocumentMapLabel property almost all SSRS Report Items (Tablix, Textbox, Charts, etc) have.
If you don't have a title or a textbox at the very top of each page, add an empty textbox, be sure place them at the top of the page in order to each bookmark jumps to the beginning of the corresponding page.
Select the first textbox and press F4 to see the extended properties window, look for DocumentMapLabel and type Page 1.
In each page set the textbox DocumentMapLabel property to the corresponding page number.
When the report is exported to PDF, your PDF client shows the bookmark menu, containing a bookmark for each page. If you click on a bookmark it jumps to the related page.
This is how it looks in Adobe Acrobar Reader:
Let me know if this helps.

CodeIgniter Menu bar problems

This is my menu. I fetch this menu items from database. Now, If I click on any menu items, then it goes to his page. But the menu bar is missing. I am showing my menus in master_page.php in view folder.
Now I want, this menu bar will be fixed in any page. So, I need to include or load the master_page.php file in the menu items pages? But I don't know the procedure. Please, someone help.
No. Don't use the includetag. Use as simple in controller
Explain :
If you need to load the navigation just call the view in each and every controller
$this->load->view("master_page")
Example:
$this->load->view("head")
$this->load->view("master_page")
$this->load->view("body")
$this->load->view("foot")
Importent:
Keep the order of page load.
head
navigation
body
foot

navigate back to the page with the selected item in the current page?

i have one doubt in wp7. I have three pages. Main page, first page and second page.
I have navigated from the main page to the first page easily and design the first page dynamically, with the data from the database. The first page contains text blocks, that i loaded data from db. And the second page, contains a list of items in the list box that will generated dynamically. I navigated from first page to the second page easily, using navigation service function.
My doubt is: From the list of items in the second page, we need to select one item, and again navigate back to the first page and display the selected item in the text block in the first page. How to do it? please help me with some piece of code... Thank You..
I think the easiest way to do that is to provide a static attribute in your code.
For example, put that in your second page c#
public static Object SelectedItem;
And retrieve it from the first page in this way:
Object selectedItem = SecondPage.SelectedItem;
Of course this code is for sample, no production-ready. But here is the idea.

Magento - Hide Static CMS block on Category Page when using layered navigation

I have a magento site. We are using layered navigation and I would like to add Static content to the category landing page along with results. I have added the cms block and it looks great on the main category page (no filters applied). However, the static block shows after applying layered navigation filters, which I don't want.
How can I hide the static cms block when any filter is applied?
I tried loading the filters in the category/view.phtml, but can't seem to figure out how to load and check. Also, I can not simply check GET parameters because the attributes used in layered navigation may change.
Any ideas on how to accomplish this?
The laziest way I can think of to achieve this is to include some script in the filtered navigation frontend template next to the 'clear all filters' button. This script could run on DOM load event and then Prototype hide your div.
In this way the static block only shows if the clear all button is missing in the filtered navigation - i.e. when no filters are applied. If you do it on the DOM load event there should be no 'flash' or any other sign that something haves been hiddens.
I know that is not a fully worked example, let me know if you get stuck...

Orchard How can I style the summary of list items different in a page versus a widget

I am new to the orchard project, and have not been able to track down how this could be done (assuming its possible).
I have a data list called "Events" in which I have attached a list of custom data type objects which are of type "Event". I then have put a view of this list in a widget on my homepage - as well as displayed the list view page by adding it to my main menu.
I have found the information to update the summary of these list items by adding the proper view
for example adding the following view:
\Themes\PeaceCamp\Views\Items\Content-Event.Summary.cshtml
<div class="event">
<b>#Model.Title</b><br />
</div>
however this seems to update the view in the widget, as well as in the list view page. Since pagination only affects the page view - I presume there is a way to summarize them different in the two different areas - hoping someone could explain or direct me to the proper location to do that - Thanks!
My solution is all local at this time, so I cannot provide links as examples - and the only thing not done in the CMS would be the view added above.
You could add your own IShapeTableProvider (the stuff you describe comes from the Shapes class in Orchard.Core.Contents) that walks up the shape tree to find a parent zone and adds alternates accordingly.
This post might give you some ideas on how to do that:
http://weblogs.asp.net/bleroy/archive/2011/01/10/orchard-shapeshifting.aspx

Resources