ADF mobile: how to link task flow to a list view item

Hi
I am trying to build a mobile app in adf and i created a popup on the left button on the header. this popup has a list view showing few options.
now the requirement is to click on the option and navigate to that feature (which is created as a task flow).
so, i am not sure how do like the task flow to the link in the listView of the popup. Please advise

Well, if that list contains all features, you can use the 'features' from the ApplicationFeatures DC (they contain the ID, name, ... so you can use #{row.id} instead of hardcoding it).
If that list does only contain a few features, you can make your own list.
In your own backing bean or data control, you can get all the features by using:
        ApplicationFeatures af = new ApplicationFeatures();
        af.getFeatures();And filter them.
An example that I made/use myself:
It uses an commandLink to navigate because I need to be able to 'disable' (= not clickable) some features (it has the same look as an ListView).
So iff just use the getFeatures(), you can use the ListView for navigation.
<amx:iterator var="row" value="#{bindings.features.collectionModel}" id="i1">   
        <amx:tableLayout width="100%" id="tl2" inlineStyle="background-color:White;">
          <amx:rowLayout id="rl2">
            <amx:cellFormat width="50px" height="50px" halign="center" id="cf4" valign="middle"
                            inlineStyle="border-bottom:thin solid #b8b9c8;">
              <amx:image source="#{row.icon}" id="i2" inlineStyle="width:40px;"/>
            </amx:cellFormat>
            <amx:cellFormat width="100%"  height="43px" id="cf3" valign="middle"
                            inlineStyle="border-bottom:thin solid #b8b9c8;">
              <amx:commandLink text="#{row.name}" id="cl1" inlineStyle="color:Black; font-weight:bolder; font-size:110%;"
                               disabled="#{!row.enable}">
                <amx:setPropertyListener from="#{row.id}" to="#{pageFlowScope.feature}" />
                <amx:actionListener binding="#{bindings.resetFeature.execute}"/>
              </amx:commandLink>
            </amx:cellFormat>
          </amx:rowLayout>
        </amx:tableLayout>
      </amx:iterator>This my own data control :
public class MenuDC {
    private ExtendedFeatureInformation[] features;
    private String message;
    public MenuDC() {
    public ExtendedFeatureInformation[] getFeatures()
        ApplicationFeatures af = new ApplicationFeatures();
        this.fillExtendedFeatureList(af.getFeatures());
        return features;
    private void fillExtendedFeatureList(FeatureInformation[] realFeatures)
        message = "";
        ModelController.getSingletonModelController().refreshMinorTables();
        features = new ExtendedFeatureInformation[realFeatures.length];
        for(int i = 0; i < realFeatures.length; i++) 
            boolean enable = true;
            FeatureInformation fi = realFeatures;
if(fi.getId().equals("be.kpd.newDayReport"))
if(ModelController.getSingletonModelController().getVarFormLocalDB(HardcodedVarCodes.LAST_SYNC).equals(""))
enable = false;
if(fi.getId().equals("be.kpd.overviewDayReport"))
if(ModelController.getSingletonModelController().getRegisDFromLastSevenDays().size() == 0)
enable = false;
if(!enable)
message = "SYNC_NEEDED";
ExtendedFeatureInformation efi = new ExtendedFeatureInformation(fi.getId(),fi.getName(),fi.getIcon(),fi.getImage(),enable);
features[i] = efi;
public String getMessage() {
return message;
I made my own POJO which implements the FeatureInformation interface,
because I needed an extra boolean attribute for disabling some features.
public class ExtendedFeatureInformation implements FeatureInformation {
    private String id,name,icon,image;
    private boolean enable;
    public ExtendedFeatureInformation() {
        super();
    public ExtendedFeatureInformation(String id, String name, String icon, String image, boolean enable) {
        super();
        this.id = id;
        this.name = name;
        this.icon = icon;
        this.image = image;
        this.enable = enable;
    public String getId() {
        return id;
    public String getName() {
        return name;
    public String getIcon() {
        return icon;
    public String getImage() {
        return image;
    public boolean isEnable() {
        return enable;

Similar Messages

  • How to link asset with purchase order and PO Item.

    Hello,
           I have to generate a report which contains columns
    Asset No , po no(ebeln) ,PO Item(ebelp),Material no etc
    My query is how to link asset with purchase order and      PO Item.
    I am selecting asset and po no. from anla  but how to get
    po item no(ebelp)?
    po line item is important in this report because every line item has differrent asset and material no.
    i tried to match asset no in mseg table but i am not getting asset no in mseg .
    how should i proceed ?

    Thanks Thomas & Srimanta for the quick response.
    When I checked EKKN table by entering PO there is no asset no. in anln1 field.
    Also I would like to add that, In me23n for a PO, account assignment category we are entering 'F' for internal order settlement.
    Where can i find the link between asset and po no(ebeln) and po item(ebelp)?
    Regards,
    Rachel
    Edited by: Rachel on Aug 11, 2008 7:23 AM

  • How to link an image file in code view

    I can't seem to figure out how to link the image file in code view. It has to be in code view because the image is hidden in Design View so I can't do it in HTML view. Here's the coded section:
    <!-- TAB #3 CONTENT -->
                    <div id="tab3" class="tabsGeneral">
                      <div class="tabsFeatureImageContainer asyncImgLoad" title="img/index/tabs/tab3/DonateNow-168x112.jpg"></div>
                      <h3 class="tabsHeader">Partner With Us</h3>
                      <p class="tabsDesc">Get involved with all the exciting things God is doing at Provision House. Partner with us to help others find true and lasting freedom from addiction in Christ. <a href="http://provisionhouse.org/giving.html" class="commonLink">Click here</a></p>
    It's' the red jpeg image file I want to link to another page in the site and I don't have enough experience to do this.
    I am thankful for your help.
    Paul

    Thanks, Gramps. Here's the page I want to like to from the image:
    http://provisionhouse.org/giving.html
    Paul
    Here's the whole section where the problem exists:
    <!-- TABS -->
                <div id="tabsContainer">
                    <div id="tabsWrapper">
                        <!-- TAB #1 CONTENT begin -->                
                        <div id="tab1" class="tabsGeneral">
                         <div class="tabsFeatureImageContainer asyncImgLoad" title="img/index/tabs/tab3/WalkingByTheSpirit-168x112.jpg"></div>
                        <h3 class="tabsHeader">Session 5 of the Breaking the Chains Seminar Completed</h3>
                            <p class="tabsDesc">Visit the <a href="videos.html" class="commonLink">Videos page</a> to watch clips of Session 5, <span class="Italic">Walking by the Spirit</span></a></p>   
                        </div> <!-- tab1 -->
                        <!-- TAB #2 CONTENT begin -->                       
                      <div id="tab2" class="tabsGeneral">
                            <div class="tabsFeatureImageContainer asyncImgLoad" title="img/index/tabs/tab2/FreedomFromAddiction168x112.jpg"></div>
                            <h3 class="tabsHeader">Session 2, Freedom from Addiction</h3>
                            <p class="tabsDesc">Is it possible for the Christian to find true and lasting freedom from addiction? This session explains how all addictions are also sin, and it is sin that Jesus has set us free from. Anticipated release: November, 2011. <span class="commonLink"><a href="curriculum.html">Read about Session 2</a></span>
    <!--HIDDEN SECTION<<div class="tabsThumbsContainer">
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab2/1.jpg">
                                    <img src="img/index/tabs/tab2/thumb1.jpg" alt="" />
                                    <span class="desc displayNone">Dubai</span>
                                </a> 
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab2/2.jpg">
                                    <img src="img/index/tabs/tab2/thumb2.jpg" alt="" />
                                    <span class="desc displayNone">Dubai</span>                           
                                </a>
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab2/3.jpg">
                                    <img src="img/index/tabs/tab2/thumb3.jpg" alt="" />
                                    <span class="desc displayNone">Dubai</span>                               
                                </a> 
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab2/4.jpg">
                                    <img src="img/index/tabs/tab2/thumb4.jpg" alt="" />
                                    <span class="desc displayNone">Dubai</span>
                                </a>
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab2/5.jpg">
                                    <img src="img/index/tabs/tab2/thumb5.jpg" alt="" />
                                    <span class="desc displayNone">Dubai</span>                           
                                </a> 
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab2/6.jpg">
                                    <img src="img/index/tabs/tab2/thumb6.jpg" alt="" />
                                    <span class="desc displayNone">Dubai</span>                           
                                </a>                   
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab2/7.jpg">
                                    <img src="img/index/tabs/tab2/thumb7.jpg" alt="" />
                                    <span class="desc isplayNone">Dubai</span>                           
                                </a> 
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab2/8.jpg">
                                    <img src="img/index/tabs/tab2/thumb8.jpg" alt="" />
                                    <span class="desc displayNone">Dubai</span>                           
                                </a>
                            </div> --> <!-- tabsThumbsContainer -->          
                      </div> <!-- tab2 -->
                        <!-- TAB #3 CONTENT -->                        
                        <div id="tab3" class="tabsGeneral">
                        <div class="tabsFeatureImageContainer asyncImgLoad" title="img/index/tabs/tab3/DonateNow-168x112.jpg"></div>
                            <h3 class="tabsHeader">Partner With Us</h3>
                            <p class="tabsDesc">Get involved with all the exciting things God is doing at Provision House. Partner with us to help others find true and lasting freedom from addiction in Christ. <a href="http://provisionhouse.org/giving.html" class="commonLink">Click here</a></span>
                            <div class="tabsThumbsContainer">
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab3/WalkingByTheSpirit-350x250-no text.jpg">
                                    <img src="img/index/tabs/tab3/WalkingByTheSpirit-26x26-no text2.jpg" alt="" />
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab3/WalkingByTheSpirit-350x250-no text.jpg">
                                    <img src="img/index/tabs/tab3/WalkingByTheSpirit-26x26-no text2.jpg" alt="" />
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab3/WalkingByTheSpirit-350x250-no text.jpg">
                                    <img src="img/index/tabs/tab3/WalkingByTheSpirit-26x26-no text2.jpg" alt="" />
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab3/WalkingByTheSpirit-350x250-no text.jpg">
                                    <img src="img/index/tabs/tab3/WalkingByTheSpirit-26x26-no text2.jpg" alt="" />
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab3/WalkingByTheSpirit-350x250-no text.jpg"><img src="img/index/tabs/tab3/WalkingByTheSpirit-26x26-no text2.jpg" alt="" />
                                <a class="tabsThumb imgTipLeftTop" rel="img/index/tabs/tab3/WalkingByTheSpirit-350x250-no text.jpg">
                                    <img src="img/index/tabs/tab3/WalkingByTheSpirit-26x26-no text2.jpg" alt="" />
                                    </span>                           
                                </a>                   
                            </div>
    <!-- tabsThumbsContainer -->         
                        </div> <!-- tab3 -->
                    </div> <!-- tabsWrapper -->
                    <!-- TABS BUTTONS -->
                    <div id="tabsBtnBar">               
                        <div class="tabsBtn">latest news<span class="tabsSource">#tab1</span><span class="tabsSource">#tab1</span>                
                    </div>
                        <div class="tabsBtn">Current Project
                            <span class="tabsSource">#tab2</span>
                        </div>
                        <div class="tabsBtn">how to help
                            <span class="tabsDefaultTab"></span>
                            <span class="tabsSource">#tab3</span>
                        </div>                   
                    </div> <!-- tabsBtnBar -->
                </div> <!-- tabsContainer -->

  • In iphone 4 mobile me calander not showing all events in list view

    i have iphone 4 Mobile me calendar not showing all events in list view where as showing all events in month/day view. why so & how to resolve

    It started about a week ago. The "From" drop-dow is now missing in Mac Mail. It should appear beneath the subject line. I was working with MobileMe Chat support for about 3 hours. They cannot solve the problem and have now escalated it to the "Senior Advisor Team."

  • How to Hide some Rows in a List view Web Part using JavaScript ?

    How to Hide some Rows in a List view Web Part using JavaScript ?

     Here is the code that worked for me:
    var Elements = document.querySelectorAll('div[id=WebPartWPQ3] table[class=ms-listviewtable]>tbody tr .ms-vb-lastCell.ms-cellstyle.ms-vb2')
    for(var i=0, n = Elements.length; i < n; i++)
     if(Elements[i].innerHTML=="India")
    Elements[i].parentNode.setAttribute("style","display:none")
    WebPartWPQ3 -> ID of webpart Div
    ms-listviewtable -> class name of table in Div
    ms-vb-lastCell.ms-cellstyle.ms-vb2 -> classname of td to get text

  • How do I get the reminders, in list view, to display in date order?

    How do I get the reminders, in list view, to display in date order? I can't seem to get them to display in date order on either my ipad or iphone.
    Yes i know I can look at date view, but i don't like that view. I excepted the list view to display all reminders in date order.
    Thanks!

    You need to create a stringwriter, wrap it in a printwriter, then print to the printwriter, then convert the stringwriter to a string.
    Here's an example:
    StringWriter sw = new java.io.StringWriter();
    PrintWriter pw = new java.io.PrintWriter(sw);
    e.printStackTrace(pw);
    String strError = sw.toString();
    I hope this works. I didn't test the above code. I don't think I'm leaving anything out, but it's been a while since I've done it. Either way, it should get you on the right track to get what you need.
    Hope that helps.
    Michael

  • How do I show album artwork in list view?

    Since I last updated my iTunes, it seems as though I can't figure out how to show my Album Artwork in List View as I had been able to before.  Any suggestions?

    click the icon that looks like a dot with lines after it.  It is the left most icon next to the magnifying glass in day view.

  • How to use task flow's transaction options with session's user data

    Hi.
    I have custom extension of ApplicationModuleImpl class:
    package test.model
    imports...
    public class CustomAppModuleImpl extends ApplicationModuleImpl {
        public static final String SESSION_VAR = "MySessionVar";
        public CustomAppModuleImpl() {
            super();
        @Override
        protected void prepareSession(Session session) {
            super.prepareSession(session);
            System.out.println("######## " + this.getClass().getName() + ".prepareSession() called.  AM isRoot() = " + isRoot());
            Hashtable userData = session.getUserData();
            if (userData == null) {
                userData = new Hashtable();
            userData.put(SESSION_VAR, "Useless");
        @Override
        protected void create() {
            super.create();
            System.out.println("######## " + this.getClass().getName() + ".prepareSession() called.  AM isRoot() = " + isRoot());
    }Inside userData I store some useful session-based values (here is just an example ;) ).
    Within Model.jpr I defined that every Application Module I create must extends this CustomAppModuleImpl :
       <value n="oracle.jbo.extends.appModule" v="test.model.CustomAppModuleImpl"/>
    ...I have one AM with one view:
    package test.model;
    import oracle.jbo.server.ViewObjectImpl;
    // ---    File generated by Oracle ADF Business Components Design Time.
    // ---    Wed Mar 07 20:22:11 CET 2012
    // ---    Custom code may be added to this class.
    // ---    Warning: Do not modify method signatures of generated methods.
    public class AppModule1Impl extends CustomAppModuleImpl {
         * This is the default constructor (do not remove).
        public AppModule1Impl() {
         * Container's getter for EmployeesView1.
         * @return EmployeesView1
        public ViewObjectImpl getEmployeesView1() {
            return (ViewObjectImpl)findViewObject("EmployeesView1");
    }Now I have BTF (bounded task flow, with default properties) and I call that task flow on a button press. With default properties ( Transaction: <No Controller Transaction> ) I get preferred values from session's userData within Entity Object.
    Code snippet inside that entity implementation looks like:
            DBTransaction dbt = getDBTransaction();
            System.out.println(getClass().getName() + " entity lives AM: " + dbt.getRootApplicationModule().getClass().getName());
            if (dbt.getSession().getUserData() == null) {
                System.out.println(CustomAppModuleImpl.SESSION_VAR + " -> NULL");
            } else {
                System.out.println(CustomAppModuleImpl.SESSION_VAR + " -> " + dbt.getSession().getUserData().get(CustomAppModuleImpl.SESSION_VAR));
    ...And as I mentioned output is correct:
    test.model.EmployeesImpl entity lives AM: test.model.AppModule1Impl
    MySessionVar -> UselessNow the trickiest part. As soon as I change property of called task flow Transaction to something else that +<No Controller Transaction>+, e.g. Always Begin New Transaction, code snippet from task-flow.xml :
        <transaction>
          <new-transaction/>
        </transaction>
    ..This session stuff begin to act unpredictably. Session's userData is now null. And Output looks like:
    test.model.EmployeesImpl entity lives AM: oracle.jbo.server.ApplicationModuleImpl
    MySessionVar -> NULLWhy in the world ADF uses oracle.jbo.server.ApplicationModuleImpl instead of test.model.AppModule1Impl or at least my defined test.model.CustomAppModuleImpl ?!?
    Is this a bug? Or maybe a feature?
    10x
    Regards

    Hi,
    Why in the world ADF uses oracle.jbo.server.ApplicationModuleImpl instead of test.model.AppModule1Impl or at least my defined test.model.CustomAppModuleImpl ?!?
    Is this a bug? Or maybe a feature?
    ADF BC alwyas has a transaction opened even if the ADFc setting is No Transaction. So if you explicitly ask for a new transaction I assume that the ADF BC data control creates a new transaction without re-executing your AM initialization codes. Looks as if it uses an internal AM instance for this just to hold the transaction. However, worth filing this as a bug - assuming you reproduced this with a later version of either JDeveloper 11g R1 or R2
    Frank

  • ADF Mobile - How to view or hide input text in List View dynamically

    I've build ADF mobile Application using Jdeveloper 11.1.2.4
    I've added <amx:listView to my page.
    This list view shows a list of Employees from web service and beside each employee
    amx:selectBooleanSwitch
    I want when I switch amx:selectBooleanSwitch to true to display input text beside employee name
    I don't know how to make like this behavior

    I've build ADF mobile Application using Jdeveloper 11.1.2.4
    I've added <amx:listView to my page.
    This list view shows a list of Employees from web service and beside each employee
    amx:selectBooleanSwitch
    I want when I switch amx:selectBooleanSwitch to true to display input text beside employee name
    I don't know how to make like this behavior

  • ADF mobile : How to insert new rows in shopping cart application

    Hi All,
    I'm developing a shopping cart sample application.
    The first page shows 3 rows(with item and quantity columns) and "Add Row" & "save to shopping cart " buttons . On clicking add row button i want to add 4th row to the table  and on clicking "save" button all the items should add to cart.
    Can somebody tell me how to add dynamic rows in adf mobile and access the data in DC to save the data.
    Thanks,
    Prashanth.

    Are you talking about working with the local SQLite database on the device or with a remote database on the server?
    For local DB - check out the HR ADF Mobile sample.
    http://www.oracle.com/technetwork/developer-tools/adf/adf-mobile-samples-1865088.html

  • ADF mobile: How to pack a third party jars into apk

    Hi Expert,
    I am using Jdeveloper + ADF mobile 11.1.2.4 to develop an android application. In this application, I need to call some functions in the third party jar files.  I need to add the third party jars into my apk so that those classes can be found during runtime.
    I followed section 17.1.1.1 to add the libraries into my project. However, after I deployed my app to the emulator and tried to run it, it reported "encountered error: classes not found". And I also found that the third party jars don't exist in libs/ directory of the apk. Do you know how to solve the problem: How to reference a third party jar files in my app and make sure it works?
    Thanks,
    Yan

    Create a /libs directory within  Android project directory and copy the JAR files to /libs.
    To build.properties add
    external.libs.dir=libs

  • How to invoke task flow navigation after closing inline popup?

    Using JDev 11.1.1.3; I have a commandButton that currently executes task flow navigation when pressed. I need however to invoke an inline popup from the button press before executing (conditionally) the task flow navigation. The Action setting on the button then needs to be removed, but it's not clear where to reinstate it. I have the button executing some managed bean code, which conditionally invokes the inline popup, and when the popup (contains af:dialog) is closed, I have some more managed bean code that determines whether the task flow navigation should occur or not. What I need to know is how to fire off the Action from the managed bean. Any suggestions?
    Thanks,

    1. To add to Timo's solution:
    you can call those code from DialogListener like:
    public void dLstnr(DialogEvent dle){
    if("ok".equalsIgnoreCase(dle.getOutcome().toString())){
    FacesContext context = FacesContext.getCurrentInstance();
    NavigationHandler nh = context.getApplication().getNavigationHandler();
    System.out.println("1");
    nh.handleNavigation(context, "", "go");
    2. As another solution:'
    you can have custom buttons and on one of then (say OK or Yes) you can call bean method like this as Action:
    public String actionMethod(){
    // DO YOUR LOGIC
    return "NEXT_TARGET";
    for Other button (say Cancel, NO) just close the popup.
    Amit

  • How do I see the TOC when I "View Item"

    Hello,
    I know this is simple, but I am a total Robo newb.
    I have created the TOC and pages and then linked those pages to the TOC.
    When I click "View Item", all I see is the page without any TOC.
    What preview option should I use that will show me the TOC along with the pages that are linked to it?
    Thanks!
    Jeff

    Hello again
    Wow... lots of questions! I'll do the best I can to respond to these.
    I don't know what we are publishing to yet.  I think we are going to design our FAQ with Robo and then place that HTML on one of our web pages.  Is that possible and which view option is best for this purpose?
    Certainly a FAQ is possible. However, that would sound more like a single page. RoboHelp can certainly create a single page that you could copy and splice into a larger web site, but I'm not sure why one would want to do that. Tools like RoboHelp come into their own when creating a large body of information that needs to be organized using a Table of Contents and information easily found via an Index and by searching.
    Unfortunately I'm unclear on what is meant by asking which view option is best. Perhaps you aren't 100% sure about why folks use RoboHelp and what it does. Apologies in advance if you knew any of this, but here goes.
    You use RoboHelp to combine many ingredients (HTML Topic pages, Images, etc) into a "dish" that is served to users. That "dish" may be in the form of a system known as WebHelp, FlashHelp, Microsoft HTML Help, Multiscreen HTML 5 or other. What you create depends on what your audience needs or wants. If most are using iPads or Android tablets, you likely want Multiscreen HTML 5. If most are using Desktop or Laptop PCs, you may want WebHelp. But again, if all you are wanting is a single HTML page that presents a list of FAQs, RoboHelp is definitely overkill.
    Frankly, I prefer the look of the WebHelp view because the Multiscreen HTML 5 view has strange colors.  I don't see any color or skin options for Multiscreen.  How can I change colors in Multiscreen HTML 5?
    Well, that one is a bit tricksy not only to answer, but to pull off once you know how! To begin making changes to the Multiscreen HTML 5 layout, you need to click View > Pods > Project Set-up. Then expand the Screen Layouts folder. Then expand the layout of interest. You should see a layout for the Table of Contents, the Index, the Glossary, etc. Right-click and choose Edit. And that's where the REAL fun begins. (cough)
    Bottom line is that this area is most definitely NOT for the faint of heart or for folks unfamiliar with CSS and whatnot. In other words, editing is a wee bit on the daunting side. I'm so so hoping that it will be easier in the next version!
    I have a few test projects open for testing purposes.  For one project, under "Single Source Layouts", when I right click Multiscreen HTML 5, it shows a "View with Browser" option, but when I do the same thing on another project, I do NOT see "View with Browser" option under Multiscreen HTML 5.   Why is this happening?
    Well, it's unfortunately difficult to say what may be going on without seeing the projects first hand. As I indicated earlier, Multiscreen HTML 5 is the new kid on the block and as such, is a bit convoluted. For example, let's say you managed to sort all the colors and icons and whatnot for one layout. Before you generate your output, you must now ensure you edit the properties of the Multiscreen HTML 5 layout and map the layouts to the profiles. So possibly this bit is missing. I'm not sure.
    Lastly, when I view view the project the first book is always open by default.  How can I make all books closed by default when viewing?
    In any given project, there is a topic that is known as your Default Topic. It's quite simply the first topic presented to the user when the help system is opened. Typically, topics presented in the Topic pane also synchronize to the Table of Contents. So if your Default Topic is inside a book of the TOC, POOF! The book will be expanded showing where the matching topic is. One way to ensure the books are closed is to nominate a topic that isn't in the TOC structure as the Default Topic. You do this by manipulating the properties of the Single Source Layout.
    Hopefully that was both understandable and helpful... Rick

  • How do you PRINT a Finder window list view?

    Hello all.
    I think a long time ago in OS9, we can open a new (Finder) Window, switch to 'List' view and print the window, so that we can see all the nested folders, etc.
    Can we/How do we do this in OS X? Can't seem to find a Print command...
    Thanks and cheers

    Press the Shift, Command, and 4 keys, followed by the spacebar, click in the window, open the png on the desktop, and print that.
    (44001)

  • How do I get my Calendar in List view?

    I'm trying to get my calendar back to list view - I did it before but not sure how? I'm using iOS 7.1 - can someone help?

    click the icon that looks like a dot with lines after it.  It is the left most icon next to the magnifying glass in day view.

Maybe you are looking for