Train-stop display-name property bug?

Hi all,
I'm using JDeveloper 11.1.1.4.
When using train taskflow with fragments I noticed that when I enter Display name property on view (train stop) it doesn't appear as train stop title on page at all.
When I enter Display name in property inspector it generates code like this:
<view id="configuration">
    <display-name id="__3">#{bundle.configuration}</display-name>
    <page>/views/configuration.jsff</page>
    <train-stop id="__5"/>
</view>After moving display-name tag inside train-stop it looks like this:
<view id="configuration">
    <page>/views/configuration.jsff</page>
    <train-stop id="__5">
      <display-name id="__3">#{bundle.configuration}</display-name>
    </train-stop>
</view>and it works fine (displays in af:train component on page).
Is this a bug or by design?
As far as I remember this worked fine before 11.1.1.2?

Hi,
this is bug 11821340
Frank

Similar Messages

  • Difficult to input train-stop display-name

    Hi, experts,
    In jdev 11.1.2.3,
    When i try to input train-stop display-name in the Property inspector palette,
    I do have input the name string (and leave mouse from the Display name field to ID field) and click the save button in jdev,
    but infact this display name has not been saved, next time when i come back from some where to view it, it's empty.
    And I have stopped the running of app, the computer is OK(not hanging), jdev can do other works. but this issue happens several time today (some time it can work), rather difficult to input display name.
    (This issue also happens sometime on VO's hint field inputs).
    Is that a bug of jdev? some one else has met with it? or just a mirage of me?
    Thanks.

    Hi, Timo and Vinay
    Yes, I do have tried press enter key or leave the mouse to another field on the same pallette.
    but the "Save" button didnot enabled, and i have to press the "Save all" button. and cannot be saved in fact.
    This issue not always happens, but i have met many times today.
    Thanks.

  • How to set a train stop display name programmatically

    JDeveloper 11.1.2.4
    Any ideas?
    Thanks in advance
    jleon

    This article http://www.oracle.com/technetwork/issue-archive/2011/11-sep/o51adf-452576.html shows how to do this.
    Timo

  • 9300i stops displaying names in text messages

    I have a 9300i phone and until two days ago it displayed the text sender's name for received messages. Now it displays the number. This is happening with all messages and they are in my address book with the correct number.
    If i select a text message and press 'call sender' it then displays the number and also the name from my contacts.
    I don't remember changing any settings.
    Has anyone experienced this before?
    Is there a setting I can check to turn on name resolution?
    Thanks, Stu.

    no, it was very strange i rebooted the phone twice and that didnt work.
    I was typing a text message and it bombed, and when it came back up again it seems to be working properly now.
    That is, i've had two texts and it shows both names correctly. I'll have to see how it goes.

  • Change the language in the display-name of a train stop

    Hello,
    does anybody know how to use internationalization in the <display-name> of a train stop?
    Bye

    Hi,
    I use the default model, and when trying to set the Display Name in the View Properties (a train stop), in the train task flow, i can not select a resource boundle key in the expression builder.
    If I set something like:
    <view id="datosRegistro">
    <page>/registro/datosRegistro.jsff</page>
    <train-stop>
    <display-name>#{viewcontrollerbundle['trainlabel']}</display-name>
    </train-stop>
    </view>
    Nothing appears in the train stop label.
    Of course, I have register the resource bundle in faces-config.xml file
    Thanks

  • [taskflow, train]Giving name to train stop

    Hi,
    how to give a name to a stop, when train is dropped in the UI ?
    Fred

    How do I change the label for the train stop in the train component? - Again easy. Select the train stop (view activity) in the diagram and look at the property inspector, choose the Train Stop tab and set the value of display-name property to a string or an EL Expression. If you look at the XML this results in a structure like this:
    <view id="page1">
    <page>/page1.jspx</page>
    <train-stop>
    <display-name>My Custom Label</display-name>
    </train-stop>
    </view>

  • Train Stop Lables not Visible

    Hi All,
    I'm using Jdeveloper REL1 PS2 with ADFBC
    I'm having a problem getting my train stop labels to render. Besides the train stop label not being visible, everything else is working as advertised. I can navigate though the train stops, the data on my pages appears as expected.. etc.
    Here is what I've done so far:
    1. I created a bounded taskflow with page fragments and checked "create train" checkbox.
    2. In my task flow, I've assigned *<display-name>* values to each view activity participating in the train. See code below. According to the documentation I've read, this is what I need to set to label my train stops. However, when I run my task flow in a region, the the labels are not visible.
    I've read section 18.8 in the Fusion Developer's guide, I've followed examples in these two blogs:
    http://biemond.blogspot.com/2007/11/taskflow-train-in-jdeveloper-11g.html
    http://biemond.blogspot.com/2008/06/advanced-taskflow-train-features.html
    I've read previous posts regarding this issue like the this one:
    Re: Creating ADF Train
    Which states *"In Task flow click the View activity in structure window Right click Choose > insert inside > Display name and set the value to it."*
    I also went through the train taskflows and pages in the Fusion Order Demo app and I cannot see how my implementation of the taskflow or how I'm adding the af:train component to my .jsff pages is different from the examples that I've found.
    Any help would be appreciated. Thanks!
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <task-flow-definition id="EditEventTrainFlow">
        <default-activity id="__34">EditEventDetail</default-activity>
        <transaction id="__15">
          <new-transaction/>
        </transaction>
        <data-control-scope id="__16">
          <isolated/>
        </data-control-scope>
        <view id="EditEventDetail">
          <display-name id="__10">Edit Event</display-name>
          <page>/oracle/ou/oep/ui/pages/fragments/EditEventDetail.jsff</page>
          <train-stop id="__9"/>
        </view>
        <view id="EditEventRoomAssignments">
          <display-name id="__38">Assign Rooms</display-name>
          <page>/oracle/ou/oep/ui/pages/fragments/EditEventRoomAssignments.jsff</page>
          <train-stop id="__11"/>
        </view>
        <task-flow-return id="Submit">
          <outcome id="__13">
            <name>done</name>
            <commit/>
          </outcome>
        </task-flow-return>
        <task-flow-return id="Cancel">
          <outcome id="__14">
            <name>cancel</name>
            <rollback/>
          </outcome>
        </task-flow-return>
        <view id="ConfirmEventChanges">
          <display-name id="__18">Confirm</display-name>
          <page>/oracle/ou/oep/ui/pages/fragments/ConfirmEventChanges.jsff</page>
          <train-stop id="__17"/>
        </view>
        <train/>
        <control-flow-rule id="__19">
          <from-activity-id id="__20">*</from-activity-id>
          <control-flow-case id="__21">
            <from-outcome id="__23">cancel</from-outcome>
            <to-activity-id id="__22">Cancel</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <control-flow-rule id="__24">
          <from-activity-id id="__25">ConfirmEventChanges</from-activity-id>
          <control-flow-case id="__27">
            <from-outcome id="__35">submit</from-outcome>
            <to-activity-id id="__26">Submit</to-activity-id>
          </control-flow-case>
          <control-flow-case id="__29">
            <from-outcome id="__30">goToEditEventDetail</from-outcome>
            <to-activity-id id="__28">EditEventDetail</to-activity-id>
          </control-flow-case>
          <control-flow-case id="__32">
            <from-outcome id="__33">goToRoomAssignments</from-outcome>
            <to-activity-id id="__31">EditEventRoomAssignments</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <use-page-fragments/>
      </task-flow-definition>
    </adfc-config>

    Hi,
    You need to first name the view activity to desired name first and then change the display name.You will find a good example in JDeveloper Help Topics under Cue Cards>Work with ADF Technologies>Implement a Multi-Step page Flow with ADF Train>Step 2
    For Ex:
    In the Application Navigator, select the ViewController project and open the Create Task Flow dialog. Enter train-flow.xml in the File Name field. Select both Create as Bounded Task Flow and Create with Page Fragments. Then select Create Train and click OK.
    From the Component Palette, ADF Task Flow page, Components panel, drag View and drop it on the blank canvas in the diagrammer. Rename the activity to start. Repeat the procedure to add three more view activities, using the following names: addresses, payment, review.
    Drag and drop Task Flow Return on the diagram. Accept the default name of taskFlowReturn1. In the Component Palette, click Control Flow Case. On the diagram, click the review icon, then click the taskFlowReturn1 icon. Rename the control flow case element to commit.
    In the Structure window, expand view - start . Right-click train-stop and choose Insert inside train-stop Display Name. In the Property Inspector, enter Start in the Display Name field. Repeat the procedure in step 6 to add train stop display names to the remaining view activities: view - addresses , view - payment, view - review . Use the following values, respectively: Addresses, Payment, Review. In the Application Navigator, select the ViewController project and open the Create Task Flow dialog again. Enter childtrain-flow.xml in the File Name field. Make sure Create as Bounded Task Flow and Create with Page Fragments are selected. Then select Create Train and click OK. From the Component Palette, drag View and drop it on the diagrammer. Rename the activity to billing. Repeat the procedure to add one more view activity, using the name shipping. Drag and drop Task Flow Return on the diagram. Change the name to childFlowReturn1. Draw a Control Flow Case from shipping to childFlowReturn1. Rename the case element to done. In the Structure window, expand view - billing. Right-click train-stop and choose Insert inside train-stop Display Name. In the Property Inspector, enter Billing in the Display Name field. Repeat the procedure in step 13 to add
    Hope this helps!
    Edited by: Swathi Patnam on Sep 9, 2010 2:16 PM

  • ADF train task Flow display name comonent value from bundel

    hi
    i have som problem with adf bounded task flow train.
    i build a bounded task flow as fragment and train and i add display name component to each view , but how i can give the display name value from a view controller bundel .
    regards mohammad.j.yaseen

    1). Select the component for which you want to set the attribute to a bundle
    2). In the property inspector, click the context menu next to the attribute you want to pick from a bundle (the thing that looks like a "V" next to the field"
    3). Choose "Select Text Resource..." from the resulting menu

  • Train stop icon display issue

    I am using Jdeveloper 11.1.1.4.0
    Is there any way we can set the icons for each train stop in a programmatic way in the <af:train> component ?
    I have a custom train model class that extends TrainStopModel and provides getIcon() method.
    When I tried to use the nodeStamp option, icons are getting displayed twice ( one line below another) in a horizontal layout
    <af:train var="node" value="#{viewScope.StepTrain}" id="train">
    <f:facet name="nodeStamp">
    <af:commandNavigationItem
    text="#{node.label}"
    disabled="#{node.disabled}"
    visited="#{node.visited}
    icon="#{node.icon}"
    id="commandNavigationItem"
    />
    </f:facet>
    </af:train>
    And if I don't use the "nodeStamp", ADF is not displaying the custom icons at all.
    Component document says this component offers alert icon customization. How can we use that ( i.e how to set the status of a train stop to error, warning etc.) ?

    Hi,
    I have implemented train bar functionality with icons for each train stop using navigationPane.
    The sample can be found at: http://andrejusb.blogspot.in/2011/12/adf-train-apply-custom-train-stop-icons.html
    Check if it works for you.
    -Rathnam

  • How to set value for  skip condition in train stop property of train compnt

    Hi,
    Iam using JDev 11.1.1.5 version, i have created a TaskFlow where having train components pointing to different jsff pages, moving from one jsff page to another jsff page.
    I want to validate the input fileds in one of the jsff page, then only have to move to next jsff page. For this, how can i set skip property of train component....to disable to go for next train component...?
    Note: I want to set boolean value(returns 'True', if all input fileds are filled, otherwise 'False') into skip property of train component.
    Regards.

    You can use the skip property of the train stop. You can have an EL expression for it, some thing like this #{pageFlowScope.isContinueEnabled}.
    Once all the mandatory fields are entered, you can set the isContinueEnabled flag and refresh the train button bar.
    For more info refer this: http://docs.oracle.com/cd/E14571_01/web.1111/b31974/taskflows_complex.htm#CJHFBFIE
    Also, you can try navigating to different train stops programmatically.
    Check: 082.      How-to programmatically navigate ADF train models
    in http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html

  • How do I change my display name to stop showing full name

    I chose a display name yet every time I post something it shows my full name!! How can I change this? I have gone into my settings and set it so only I can see my real name, yet it still shows on all my posts in discussions.

    Yes I about had a heart attack too - here's not only my full name but my full email address too, just flappin' in the breeze.
    Does anyone here know how to contact these Jack Secret website techs at VerizonWireless.com?  They've got some bugs to iron out, but they've insulated themselves thoroughly from us plebes.
    First of all would be this infuriating little thing in these post forms that keep jumping you back to the last paragraph after you've made a paragraph break.
    Secondly, I can think of n  ...GRRRR  - It just did it again...
    Secondly, I can think of no circumstance in which I want to see my profile in any other mode than the way in which it's viewed by every other user.  I've never been on any website forum where this bizarre bipolar thing was going on.  Just show my profile as seen by others, thanks.
    At the very least, put a notice on the profile edit page that tells people about... that bizarre bipolar thing - so they don't have to freak out at the apparent general broadcast of name and email address to the world, the exciting prospect of identity theft, etc.
    Lastly, I can find no method by which a person can delete his Ve - RRRRRRRR!!!!!!!!!!
    Lastly, I can find no method by which a person can delete his VerizonWireless community profile.  This should always be an option, but not here.

  • How to set the "display name" of an customized property

    Hi,
    I've created a customzied property of KM file with KM API, and display it in KM navigation iview. It is ok, except the Column head show the technical name of the property. But what i want is some specify display name and even can support multi language, how this can be done?? Any hint?? Thanks!!
    Best Regards,
    Xiaoming Yang

    you must change the collection render and the resource render in order to show the properties you want.
    For translation propourses check this link
    http://help.sap.com/saphelp_nw04/helpdata/en/75/e000861cb8ad4b8e4f19dd6416346d/frameset.htm
    You must deal with resource bundle

  • Suddenly my phone has stopped displaying my contacts names when I receive a message from them and just a number appears instead?

    Suddenly my phone has stopped displaying my contacts names when I receive a message from them and just a number appears instead?

    This happened to me and I was baffled for a bit.  I went to my contact list and that contact (that was now a number) had disappeared.  Then, multiple contacts started disappearing.  Subsequently, they reappeared but in duplicate and sometimes triplicate.  I believe that it had something to do with iCloud sync.  I ended up removing the contacts (in settings) and then bringing them back in.  Everything seemed to work after that.

  • How to costumize a property's display name

    Hello,
    When creating new property for a resource I am being asked to set the PropertyID and a UniqueID. These fields can't contain white spaces, so when watching these properties their display name looks like this: "myNewProperty". Where can I set more "friendlier" name for the users, like the other pre-defined properties has, like: "Created By" and "Mime Type"?
    I tried setting the field "Key For Lablel" on creation time but that didn't do the trick...
    Roy

    Hi Roy,
    in order to achieve this you have to work with bundle files and meta data extensions for your properties.
    The process in short: You create bundle files (mylabels_XX.properties) for different languages where you specify the "friendlier" names like "myNewProperty=My New Property". After that you include the bundle files in a JAR (mylabels.jar) and create a Meta Data Extension referring to the bundle files. Using now the Meta Data Extension in your properties it will now access the labels form the bundle files.
    Check this links for a more detailed description on this process:
    http://help.sap.com/saphelp_nw04/helpdata/en/75/e000861cb8ad4b8e4f19dd6416346d/frameset.htm (NW'04)
    http://help.sap.com/saphelp_ep60sp2/helpdata/en/75/e000861cb8ad4b8e4f19dd6416346d/frameset.htm (SP2)
    Hope this solves your problem,
    Robert

  • Skip Property in Train Stop???

    Hi, I saw some tutorial regarding Train including this >>> http://www.oracle.com/technetwork/developer-tools/adf/learnmore/82-programmatically-navigate-trains-396873.pdf
    but while conducting a research and development using the document, I can't find the Skip property of the train stop indicated in Page 8.
    Does anyone familiar with this? I have a use case wherein the train stop should be disabled and we have to navigate programaticalyl.
    Thanks..

    open your task flow in jdeveloper main menu.
    then click on the view (train stpe) you want to change its skip property.
    you will see the skip property in the property inspector.

Maybe you are looking for