Help with Train component

Hi,
I have to implement wizard based page flow for my application and I read that we can achieve it using train component. I am not able to find documentation or examples on it.
Does any of you know any link to documentation and/or example program for it?
I am trying to see if train component will suffice for our needs. We have simple sequence flow, conditional branching, looping within the wizard flow (like adding repetitive items within the flow) etc.
Thanks in advance,
_Jp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Here are several very simple examples of the train in UIX. I don't know of any full example program.
<ctrl:page xmlns="http://xmlns.oracle.com/uix/ui"
xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
xmlns:data="http://xmlns.oracle.com/uix/ui"
xmlns:html="http://www.w3.org/TR/REC-html40" expressionLanguage="el"
xmlns:ui="http://xmlns.oracle.com/uix/ui">
<ctrl:head>
<html:title>&lt;train&gt; element</html:title>
</ctrl:head>
<ctrl:content xmlns:ui="http://xmlns.oracle.com/uix/ui">
<stackLayout>
<separator>
<separator/>
</separator>
<contents>
<link text="View Source"
destination="${ctrl:eventUrl(uix, 'viewSource')}"/>
<html:p/>
<styledText styleClass="OraHeaderSubSub"
text="Train with no children or selection"/>
<train/>
<styledText styleClass="OraHeaderSubSub"
text="Train with 4 children but no selection"/>
<train>
<contents>
<link text="Bali"/>
<link text="Baja"/>
<link text="Architecture"/>
<link text="Release"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 4 children and value=2"/>
<train value="2">
<contents>
<link text="Bali"/>
<link text="Baja"/>
<link text="Architecture"/>
<link text="Release"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 4 children and selectedIndex=1"/>
<train selectedIndex="1">
<contents>
<link text="Bali"/>
<link text="Baja"/>
<link text="Architecture"/>
<link text="Release"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 4 children and value=1 and selectedIndex=3 (value takes precedence)"/>
<train value="1" selectedIndex="3">
<contents>
<link text="Bali"/>
<link text="Baja"/>
<link text="Architecture"/>
<link text="Release"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 4 children and value out of bounds low"/>
<train value="-1">
<contents>
<link text="Bali"/>
<link text="Baja"/>
<link text="Architecture"/>
<link text="Release"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 4 children and value out of bounds high"/>
<train selectedIndex="7">
<contents>
<link text="Bali"/>
<link text="Baja"/>
<link text="Architecture"/>
<link text="Release"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children and value=1"/>
<train value="1">
<contents>
<link text="Active Step1"/>
<link text="Next Step2"/>
<link text="Next Step3"/>
<link text="Next Step4"/>
<link text="Next Step5"/>
<link text="Next Step6"/>
<link text="Next Step7"/>
<link text="Next Step8"/>
<link text="Next Step9"/>
<link text="Next Step10"/>
<link text="Next Step11"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children and value=4"/>
<train value="4">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Active Step4"/>
<link text="Next Step5"/>
<link text="Next Step6"/>
<link text="Next Step7"/>
<link text="Next Step8"/>
<link text="Next Step9"/>
<link text="Next Step10"/>
<link text="Next Step11"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children and value=5"/>
<train value="5">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Visited Step4"/>
<link text="Active Step5"/>
<link text="Next Step6"/>
<link text="Next Step7"/>
<link text="Next Step8"/>
<link text="Next Step9"/>
<link text="Next Step10"/>
<link text="Next Step11"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children and value=6"/>
<train value="6">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Visited Step4"/>
<link text="Visited Step5"/>
<link text="Active Step6"/>
<link text="Next Step7"/>
<link text="Next Step8"/>
<link text="Next Step9"/>
<link text="Next Step10"/>
<link text="Next Step11"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children and value=7"/>
<train value="7">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Visited Step4"/>
<link text="Visited Step5"/>
<link text="Visited Step6"/>
<link text="Active Step7"/>
<link text="Next Step8"/>
<link text="Next Step9"/>
<link text="Next Step10"/>
<link text="Next Step11"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children and value=8"/>
<train value="8">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Visited Step4"/>
<link text="Visited Step5"/>
<link text="Visited Step6"/>
<link text="Visited Step7"/>
<link text="Active Step8"/>
<link text="Next Step9"/>
<link text="Next Step10"/>
<link text="Next Step11"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children and value=9"/>
<train value="9">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Visited Step4"/>
<link text="Visited Step5"/>
<link text="Visited Step6"/>
<link text="Visited Step7"/>
<link text="Visited Step8"/>
<link text="Active Step9"/>
<link text="Next Step10"/>
<link text="Next Step11"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children and value=10"/>
<train value="10">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Visited Step4"/>
<link text="Visited Step5"/>
<link text="Visited Step6"/>
<link text="Visited Step7"/>
<link text="Visited Step8"/>
<link text="Visited Step9"/>
<link text="Active Step10"/>
<link text="Next Step11"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children. User returned to step 9 (value=9, maxVisited=9)"/>
<train value="9" maxVisited="9">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Visited Step4"/>
<link text="Visited Step5"/>
<link text="Visited Step6"/>
<link text="Visited Step7"/>
<link text="Visited Step8"/>
<link text="Active Step9"/>
<link text="Visited Step10"/>
<link text="Next Step11"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children. User returned to step 5 (value=5, maxVisited=9)"/>
<train value="5" maxVisited="9">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Visited Step4"/>
<link text="Active Step5"/>
<link text="Visited Step6"/>
<link text="Visited Step7"/>
<link text="Visited Step8"/>
<link text="Visited Step9"/>
<link text="Visited Step10"/>
<link text="Next Step11"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 6 children. All children disabled except active step"/>
<train value="4">
<contents>
<link text="Disabled Step" disabled="true"/>
<link text="Disabled Step" disabled="true"/>
<link text="Disabled Step" disabled="true"/>
<link text="Active Step4"/>
<link text="Disabled Step" disabled="true"/>
<link text="Disabled Step" disabled="true"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 6 steps, one step disabled"/>
<train value="5">
<contents>
<link text="Visited Step"/>
<link text="Visited Step"/>
<link text="Visited Step"/>
<link text="Disabled Step" disabled="true"/>
<link text="Active Step5"/>
<link text="Next Step"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children. Step 9 Active (value=9), Steps 11 and 4 disabled"/>
<train value="9">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Disabled Step4" disabled="true"/>
<link text="Visited Step5"/>
<link text="Visited Step6"/>
<link text="Visited Step7"/>
<link text="Visited Step8"/>
<link text="Active Step9"/>
<link text="Next Step10"/>
<link text="Disabled Step11" disabled="true"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children. Step 9 Active (value=9), Steps 10 and 5 disabled"/>
<train value="9">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Visited Step4"/>
<link text="Disabled Step5" disabled="true"/>
<link text="Visited Step6"/>
<link text="Visited Step7"/>
<link text="Visited Step8"/>
<link text="Active Step9"/>
<link text="Disabled Step10" disabled="true"/>
<link text="Next Step11"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children. Step 9 Active (value=9), Steps 10 and 11 and 4 and 5 disabled"/>
<train value="9">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Disabled Step4" disabled="true"/>
<link text="Disabled Step5" disabled="true"/>
<link text="Visited Step6"/>
<link text="Visited Step7"/>
<link text="Visited Step8"/>
<link text="Active Step9"/>
<link text="Disabled Step10" disabled="true"/>
<link text="Disabled Step11" disabled="true"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children. User returned to step 5 (value=5, maxVisited=9) Step 6 is disabled"/>
<train selectedIndex="4" maxVisited="9">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Visited Step4"/>
<link text="Active Step5"/>
<link text="Disabled Step6" disabled="true"/>
<link text="Visited Step7"/>
<link text="Visited Step8"/>
<link text="Visited Step9"/>
<link text="Visited Step10"/>
<link text="Next Step11"/>
</contents>
</train>
<!-- Beginning of tests with forms. Form names need to be unique -->
<styledText styleClass="OraHeaderSubSub"
text="Train inside a form with validation. value=4, formSubmitted=true, id is set"/>
<styledText styleClass="OraTipText"
text="Expected behavior is validation for next step will occur."/>
<form name="myForm1a">
<contents>
<messageTextInput name="costCenter" required="yes"
prompt="Cost Center"/>
<train value="4" formSubmitted="true" id="TrainControl">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Active Step4"/>
<link text="Next Step5"/>
<link text="Next Step6"/>
</contents>
</train>
</contents>
</form>
<styledText styleClass="OraHeaderSubSub"
text="Train inside a form with validation. value=4, formSubmitted=true, id is set, unvalidated=true"/>
<styledText styleClass="OraTipText"
text="Expected behavior is validation for next step will *not* occur because unvalidated is set to true."/>
<form name="myForm1b">
<contents>
<messageTextInput name="costCenter" required="yes"
prompt="Cost Center"/>
<train value="4" formSubmitted="true" id="TrainControl"
unvalidated="true">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Active Step4"/>
<link text="Next Step5"/>
<link text="Next Step6"/>
</contents>
</train>
</contents>
</form>
<styledText styleClass="OraHeaderSubSub"
text="Train inside a form with validation. value=4, formSubmitted=false, destination set"/>
<styledText styleClass="OraTipText"
text="Expected behavior is validation will not occur. Destination will be used in url."/>
<form name="myForm1c">
<contents>
<messageTextInput name="costCenter" required="yes"
prompt="Cost Center"/>
<train value="4" formSubmitted="false"
destination="http://bali.us.oracle.com/cabo/baja/release.html"
id="TrainControl">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Active Step4"/>
<link text="Next Step5"/>
<link text="Next Step6"/>
</contents>
</train>
</contents>
</form>
<styledText styleClass="OraHeaderSubSub"
text="Train inside a form with validation. value=4, formSubmitted=false, destination not set"/>
<styledText styleClass="OraTipText"
text="Expected behavior is no links will show"/>
<form name="myForm2">
<contents>
<messageTextInput name="costCenter" required="yes"
prompt="Cost Center"/>
<train value="4" formSubmitted="false">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Active Step4"/>
<link text="Next Step5"/>
<link text="Next Step6"/>
</contents>
</train>
</contents>
</form>
<styledText styleClass="OraHeaderSubSub"
text="Train outside a form with validation. formName is set. id is set"/>
<styledText styleClass="OraTipText"
text="Expected behavior is formName will be used, and validation will occur"/>
<form name="testForm">
<contents>
<messageTextInput name="costCenter" required="yes"
prompt="Cost Center"/>
</contents>
</form>
<train value="4" formName="testForm" id="TrainControl">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Active Step4"/>
<link text="Next Step5"/>
<link text="Next Step6"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with no form. destination and id set"/>
<styledText styleClass="OraTipText"
text="Expected behavior is train has links, destination is the base url"/>
<train value="4"
destination="http://bali.us.oracle.com/cabo/baja/release.html"
id="TrainSource">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Active Step4"/>
<link text="Next Step5"/>
<link text="Next Step6"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="Train with 11 children and destination. User returned to step 5 (value=5, maxVisited=9)"/>
<train value="5"
destination="http://bali.us.oracle.com/cabo/baja/release.html"
id="TrainSource" maxVisited="9">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Visited Step4"/>
<link text="Active Step5"/>
<link text="Visited Step6"/>
<link text="Visited Step7"/>
<link text="Visited Step8"/>
<link text="Visited Step9"/>
<link text="Visited Step10"/>
<link text="Next Step11"/>
</contents>
</train>
<styledText styleClass="OraHeaderSubSub"
text="subTrain Demo.
To render a train which indicates that it is in a sub-process,
use the train element and set the subTrain attribute to true.
Here are a couple of examples: "/>
<stackLayout>
<contents>
<styledText styleClass="OraDataText"
text="&lt;train subTrain=&quot;true&quot; &gt;"/>
<formattedText styleUsage="instruction" text="Train has 4 children."/>
<train subTrain="true">
<contents>
<link text="Bali"/>
<link text="Baja"/>
<link text="Architecture"/>
<link text="Release"/>
</contents>
</train>
</contents>
</stackLayout>
<stackLayout>
<contents>
<styledText styleClass="OraDataText"
text="&lt;train subTrain=&quot;true&quot; value=&quot;5&quot; maxVisited=&quot;9&quot;
destination=&quot;http://www.oracle.com&quot;&gt; "/>
<formattedText styleUsage="instruction"
text="Train has 11 children. User returned to step 5 (value=5, maxVisited=9)"/>
<train subTrain="true" value="5" destination="http://www.oracle.com"
id="TrainSource" maxVisited="9">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Visited Step4"/>
<link text="Active Step5"/>
<link text="Visited Step6"/>
<link text="Visited Step7"/>
<link text="Visited Step8"/>
<link text="Visited Step9"/>
<link text="Visited Step10"/>
<link text="Next Step11"/>
</contents>
</train>
</contents>
</stackLayout>
<stackLayout>
<contents>
<styledText styleClass="OraDataText"
text="Same train as above, but without the subTrain attribute set (it defaults to false)"/>
<train value="5" destination="http://www.oracle.com"
id="TrainSource" maxVisited="9">
<contents>
<link text="Visited Step1"/>
<link text="Visited Step2"/>
<link text="Visited Step3"/>
<link text="Visited Step4"/>
<link text="Active Step5"/>
<link text="Visited Step6"/>
<link text="Visited Step7"/>
<link text="Visited Step8"/>
<link text="Visited Step9"/>
<link text="Visited Step10"/>
<link text="Next Step11"/>
</contents>
</train>
</contents>
</stackLayout>
</contents>
</stackLayout>
</ctrl:content>
<ctrl:handlers>
<ctrl:event name="*">
<ctrl:null/>
</ctrl:event>
</ctrl:handlers>
</ctrl:page>

Similar Messages

  • Help with training

    I work for a company that uses .NET for everything. We currently employ some ABAP consultants for our newly implemented SAP needs and I want to be able to take their place without having to learn ABAP.
    What I need help with though is convincing my bosses to let me use Java instead of .NET. I was hoping that someone might be able to give me information or point me to an article that will show how much better it is to know/use Java (in relation to SAP) and why. I really appreciate any and all help.

    Hi James,
    First thing, without any ABAP knowledge you will struggle to get very far with a lot of SAP stuff - even the majority of the new technologies based on Java have some dependancy on ABAP at some point.  It's all very well being able to write Java portal apps or standalone stuff in Java but if it has to interface to an SAP system, quite often ABAP knowledge would be invaluable.  As it sounds like your company has no ABAP resource you would be stuck.
    In answer to your specific question, the fact that most of the development forums on here deal mainly in Java and not .Net is a clear indication to a developer that Java is the answer for SAP.  But of course I guess you are trying to convince management/bean-counter types?!
    I'm not sure what to recommend...  I've not seen any direct comparison documents between Java & .Net for SAP.
    Do you already know Java or do you see this as a good opportunity to cross train?  I'd be inclined to think about moving towards ABAP first to gain an understanding of SAP as a system - it sounds like you would be more of an asset to your company that way! - then move into the Java area afterwards.
    Good luck!
    Gareth.

  • Need help with CF component call, please

    Hi!
    I've been working with component lately but still learning. In one of my logic I need to use an existing component and I'm not sure how to correctly call the function and get the return result from that.
    Can anyone help me please?
    Basically I created a component:
    <cfcomponent displayname="X">
         <CFFUNCTION name="GetNames">
           <fargument name="1" type="String" required="TRUE">
           <cfargument name="2" type="String" required="TRUE">
           <!---- I do my work here ---->
            within my logic, I need to call an existing function located at
            in a different component And I  need to use the result returned by this function.
            (see below)
            I'm not sure how to correctly call that function from here
            Can I simply do:
            <cfinvoke component="the location of Y component" method="Compare" MyVar = "MyNames" Returnresult="Z">
            <CFIF #Z# NEQ 0>
                <!---  DO something --->
           <CFELSE>
              <!--- do something else --->
           </CFIF>
         </CFFUNCTION>
    </cfcomponent>
    This is the existing componen that I need to use. It's located at the same directory:
    <cfcomponent displayname="Y">
    <!--- assuming this is the function that I need to call --->
         <CFFUNCTION name="Compare" hint="verify names">
           <cfargument name="MyVar" type="String" required="TRUE">
          <cfscript>
                some logic here
                 return return_struct;
         </cfscript>
         </CFFUNCTION>
    </cfcomponent> 
    Please advice, thank you!

    I hopo the following example will be helpful for. Please let me know if you have any questions.
    childComponent.cfc:
    <cfcomponent displayname="childComponent">
        <cffunction name="childComponentFunction" access="remote" returntype="string">
            <cfargument name="myArgument" type="string" required="yes">
            <cfset var finalString="">
            <cfinvoke component="baseComponent" method="baseComponentFunction" returnvariable="finalString">
                <cfinvokeargument name="stringArgumentToReturn" value="#arguments.myArgument#">
            </cfinvoke>
            <cfreturn finalString>
        </cffunction>
    </cfcomponent>
    baseComponent.cfc:
    <cfcomponent displayname="baseComponent">
        <cffunction name="baseComponentFunction" access="public" returntype="string">
            <cfargument name="stringArgumentToReturn" required="yes" type="string">
            <cfreturn arguments.stringArgumentToReturn>
        </cffunction>
    </cfcomponent>
    FYI - There several other methods through which we can call functions of different functions.

  • Help with cfgrid / component

    Hey everyone...
    I'm working on the following piece code
    <cfinvoke
    component="elements.assets.cf.components.Reports"
        method="pKreport"
        returnvariable="qryKres">
    </cfinvoke>
    <cfform name="Kform">
        <cfgrid name="pKreport"
            bindonload="true"
            sort="yes"
            highlighthref="yes"
            griddataalign="left"
            gridlines="yes"
            selectmode="row"
            insertbutton="Add" 
            deletebutton="Delete"
            enabled="yes"
            visible="yes"
            format="html"
            preservepageonsort="false"
            striperows="yes"
            selectonload="false"
            autowidth="false"
            pagesize="100"
    bind="cfc:elements.assets.cf.components.Reports.pKreport({cfgridpage},{cfgridpagesize},{cf gridsortcolumn},{cfgridsortdirection})">
            <cfgridcolumn name="buildingName"
                header="Building Name"
                headeralign="left"
                dataalign="left"   
                select="no"
                display="yes"
                headerbold="yes" />
            <cfgridcolumn name="allocatedSF"
                header="Allocated SF"
                headeralign="left"
                dataalign="left"   
                select="no"
                display="yes"
                headerbold="yes" />
            <cfgridcolumn name="capacity"
                header="Capacity"
                headeralign="left"
                dataalign="left"   
                select="no"
                display="yes"
                headerbold="yes" />
            <cfgridcolumn name="occupancy"
                header="Occupancy"
                headeralign="left"
                dataalign="left"   
                select="no"
                display="yes"
                headerbold="yes" />
            <cfgridcolumn name="vacancy"
                header="Vacancy"
                headeralign="left"
                dataalign="left"   
                select="no"
                display="yes"
                headerbold="yes" />
        </cfgrid>
    </cfform>
    But I keep getting the following error - and I'm not sure why...
    The specified  CFC elements.assets.cf.components.Reports could not be found.
    The path to the CFC must be  specified as a full path, or as a relative path from the current template,  without the use of mappings.
    I'm using the same component in both the cfinvoke & cfgrid -- it works fine with the cfinvoke...

    Yes the two code blocks are on the same page...
    Can you help?

  • Help with "Unresolved Component" warning

    I know this was asked recently, but I think the poster had different set of circumstances, because the advice offered in that thread didn't lead me to a solution. Or else I'm incompetent! Hopefully someone can help me with the issue I'm having.
    Here's the scenario:
    I get a "Unresolved Component" warning for syntax like this: "createObject('component', 'ss_components.application_methods')"
    - 'ss_components' is a mapping on the CF Server, and the application works fine when tested
    - My CFBuilder Project folder is located in a different place than the wwwroot. Wwwroot is where all the CF scripts/application files are. Within the CFBuilder project, i have a Linked Folder to the wwwroot folder.
    I have the following settings in CFBuilder. Some of these settings are the way they are because I was trying various things out to try and fix this 'Unresolved' problem.:
    -Preferences>ColdFusion>Server Settings> (all checked)
    -Preferences>ColdFusion>Startup> Index all CFCs... (unchecked)
    -Properties>ColdFusion Project>(I have my linked folder here, when I created it, I unchecked the 'Use Link Folder to Resolve CFCs)
    -Local Server Settings: blank entry for "Document Root"
    I'm aware of the inheretence for finding components and I don't fully understand it since I'm new to CFBuilder, but all I know is that the first place CFBuilder looks for components is Mappings defined by CFServer....  I only want it to look there, since that's the only way I ever refer to components
    - Running CF Builder 2, trial on my dev machine which has:
         CF9 installed
         IIS7.5
         RDS Enabled (and works because i can browse the db in CFBuilder)
         CFBuilder was installed as an Eclipse plugin, not standalone.
    Please if anyone can help me with this, i would really appreciate it. I've been trying to fix this all day! :-S
    Thanks
    Dan

    I'm having the same problem.  If I look in the Services Browser, the component shows up correctly, but in CFB2, I get the Unresolved Component message.  Here is my code:
    component output="false" extends="appname.extensions.components.core.Framework" {...}
    I have a CF mapping "appname\extensions" to the folder where the code is.  I've tried just about everything with the server settings in CFB2 as well as the Project settings.  When I click on the error in the gutter, "Quick Fix" suggests to me to create "appname.appname.extensions.core.Framework", but I'm not sure why.  Any help would be great!
    Thanks,
    Tyler

  • Help with Custom Component: Ajax and ValueChangeListener

    Hello,
    I am trying to create a custom component that triggers an update via Ajax. However, I would also like to trigger a ValueChangeListener method from the same component, however I am unsure of how to obtain and trigger the ValueChangeEvent.
    The code I have so far in the Phase Listener is:
    private void handleAjaxRequest(PhaseEvent event) {
         FacesContext context = event.getFacesContext();
            HttpServletResponse response = (HttpServletResponse)context.getExternalContext().getResponse();
            Object object = context.getExternalContext().getRequest();
            if (!(object instanceof HttpServletRequest)) {
                return;
            HttpServletRequest request = (HttpServletRequest)object;
            HttpSession session =  request.getSession();
            String requestType = request.getParameter("jsflotRequestType");
            if (requestType != null && requestType.equalsIgnoreCase("jsflotchartValueChange")) {
                 //Trigger valueChangeEvents
                 log.info("Handling JSFlot Chart Value Change Event.");
    }What I am looking for though, is some information regarding how to obtain the ValueChangeListener from the request/session objects.
    The component tag is called like this:
    <jsflot:flotChart id="valueTimeChart"
         value="#{chartMbean.chartSeries}"
         valueChangeListener="#{chartMbean.valueChangeListener}"Any help would be greatly appreciated!

    The field calculation order was not in the correct order, had a devil of a time figuring out how to get to it, in Acrobat X.
    My check boxes for shipping have the same name field but I don't see a tab for export value for the check boxes, and I have no idea how to implement your suggestions for a switch or if statement or what fields to attach them to. 
    My amatuer attempt at a shipping formula follows, I don't know if I can use a range for event value, or where to put the script, if it is even correct.
    if(event.value == "<25.01")
        nShipFee = 06;
    else if(event.value == "25.01 - 75")
        nShipFee = 11.50;
    else if(event.value == "75.01 - 125")
        nShipFee = 15;
    else if(event.value == "125.01 - 200")
        nShipFee = 20;
    else if(event.value == "200.01 - 300")
        nShipFee = 25;
    else if(event.value == "300.01 - 400")
        nShipFee = 30;
    else if(event.value == ">400")
        nShipFee = 50;

  • Using SavePointRestore activities with Train Component not working.

    Hello,
    I am testing 'Save for Later' capabilities in 11g. I have a simple Three-Step scenario using a bounded task flow on which the SavePoint Restore functionality is working just fine. Now, If I am changing that bounded task flow to act as a Train and I am adding TrainButtonBar and Train components to each page. With this changes, when I am restoring a savepoint I am returned to the correct step, the form is populated with the correct data, but the Train and TrainButtonBar components dissapear.
    Is anyone encountered this situation?
    Thanks,
    Florin Marcus

    After little research I have notice that TrainButtonBar and Train components are not correctly deserialized from the database. If I remove them and still use a bounded flow as a train, everything works.
    Florin

  • Help with publishing component

    I've been working with the Strobe media playback package that I downloaded and installed as a component.  I have it loading videos and it is working fine in the Author mode, but not in publish mode.  I also downloaded a google maps package and installed which allows me to use google maps as a component, and it displays and works in the Author mode, but does not display in the publish instance.  Other changes show up fine in the publish mode, but it seems that all of the package components that Iv downloaded so far i can't see in the publish instance.  Can someone explain to me how to get these displaying in publish mode?  Thanks.
    -Jon

    Make sure you have activated the respective package from [1].  If you have already done that could you please eloborate more on the problem like where you have downloaded the package and what is the error you are getting in the publish.
    [1]  http://<host>:<port>/libs/wcm/core/content/misc.html#/etc/packages

  • Help with Loader component!

    hi, i've got a Loader component on a swf i call holder.swf
    i am loading an external.swf in this loader
    i have a variable called music in holder.swf.
    is there any way for me to access the variable music that was
    defined in holder.swf, from the externally loaded external.swf?
    in code:
    basically i have in "holder.swf"
    onClipEvent (load) {
    _root.myLoader.contentPath = "external.swf";
    _global.music=5;
    and in external.swf
    i am trying to do
    if(_root.music==5){
    do something;
    }

    Hi
    Won't using _global.music work (rather than _root.music)? I
    use various ways to load swf files and usually pass variables via
    _global.
    Don't think I've used your particualr load method
    though.

  • How to use Train Component only with Task-flows as Train Stops

    Hi,
    I'm using JDeveloper version - 11.1.1.6
    I have below requirement:
    In a Page when user clicks the button, display the Popup with Train Component. I have to use bounded task flow for each Train Stop. I don't have any views to be used as Train Stops. (Most of the Train Samples have Views / JSFF Fragments as Train Stops and child task flows as Train stops)
    Please let me know if I can achieve this.
    Any pointers would be helpful.
    Thanks
    Ravi

    Hi,
    train stops must be displayed on a view. So if you have a task flow that navigates to other taskflows then it needs to have at least a single view to display the train stops. If you attempt to show. If you enter a task flow then this task flow will have its own train model. So maybe its better to look at what your use case is and why you need to quite called task flows without properly exiting them
    Frank

  • Help with creating a component: auto-sizing

    I'm trying to create a lightweight component (extends UIComponent) that supports auto-sizing (aka default sizing.) Many of the Flex component's do this, for instance mx:Button will, if you do not set a size, size itself to be "large enough to hold the label text, and any icon." How can I do this with my component?
    I tried overriding measure() and setting the measured sizes (measuredWidth, measuredHeight, measuredMinWidth, measuredMinHeight) but updateDisplayList always gets called with values of 0, 0 for unscaledWidth and unscaledHeight, and the .width and .height properties always stay at 0, 0.
    I've looked over the mx:Button code quite a bit and cannot figure out how it manages to perform default/auto-sizing. Can anyone help?
    Cheers.
    -Aaron

    You could set breakpoints to see if explicitWidth/Height is getting set in some surprising way.  Could maxWidth/maxHeight be set to 0?  That could also mess it up.
    One more thing is that the component is given its size by its parent.  If the parent is 0x0 that could also cause trouble.  Or some other part of the layout logic is trumping the measuredWidth/Height.  In theory there should be a call to setActualSize or setLayoutBoundsSize.  A breakpoint there should help you figure out the logic that determined the size.

  • How to launch the dialog with a wizard having train component

    Hi
    I have a page with a button and onclicking the button i need to show a dialog wizard( a wizard with 3 pages with the train component to move back and forth)
    I have created a taskflow as a train with 3 pages, but onclicking the button i am not able to launch the dialog as a taskflow.
    Any documentatino on how to achieve the same or some sample application reference is highly appreciated
    Bittu Bansal

    On clicking the button i want to show a popup and that popup drives me through the wizard.
    However i am able to achive the same right now.
    I am calling a popup using showPopupBehaviour and that popup i have created the region where i have embedded the task flow for a train wizard.
    Thanks
    Bittu Bansal

  • ***Adobe chat support is not trained to help with my problem...

    Hi, I installed Yosemite the mac os on my macbook pro as a result I was unable to access some of my pro apps. So I backed up my system (i thought) to an external drive and downgraded my system to Maverics. I reinstalled all my apps. Now suddenly My Adobe apps don't work. I got the Licensing for this product has stopped working error. I downloaded the recommended License recovery tool, but it says it couldnt open the application because "powerPC applications are no longer supported. Please help! I have a 2007 macbook pro and I cant use my AE cs4 or Ps cs4 apps. ***Adobe chat support is not trained to help with my problem

    If you have OSX 10.7 or above you can try the LicenseRecover.py file. You have to open Terminal, type sudo and leave a space, then drag the LicenseRecovery.py file from the folder into the window, press Enter. It will look like this:
    Enter your password to run it. You won't see the cursor move, just enter it anyway, and let the script run.
    Then try running your CS4 programs.

  • Help with getting a better understanding on how APEX submits its pages

    Hi,
    I have implemented jquery with my app and have just applied the jquery UI plugins.
    I have the jquery UI dialog function working which gives the users some options. Now as an example, I have a cancel and a continue button. If the user clicks cancel it simply stops the page from submitting. Which works perfectly however, I cannot get the continue button to carry on with the request.
    I gather that I will need to determine what the href was of the link/button that was clicked before the dialog box appears.
    I know Apex uses a javascript function call doSumit() which simply submits the page but what does it use for other href like links to other pages?

    The problem is that you're taking a camcorder format that Premiere Elements is able to work with and converting it to a format that it can NOT work with.
    That Canon camcorder produces AVCHD video. You should shoot any video you want to edit in Premiere Elements only in MXP or FXP mode. Then, when you're ready to edit the video in Premiere Elements, you should set up a project for AVCHD 1920x1080 stereo. (Unless you're shooting in 5.1 audio. This cam shoots in a number of formats.)
    DO NOT CONVERT YOUR VIDEO BEFORE YOU PUT IT IN PREMIERE ELEMENTS.
    You can then use these specs to output high-quality video for YouTube.
    http://forums.adobe.com/thread/623549?tstart=0
    If you need some basic help with the program, be sure to check out my free 8-part Basic Training tutorial series at Premiere Elements support site Muvipix.com.
    http://forums.adobe.com/thread/537685?tstart=0

  • How can I do live streaming with a Mac Book Pro 2011, using a new model of Sony HD camcorder which does not have firewire out/input? it comes only with a component video output, USB, HDMI and composite RCA output?

    I need to do live streaming with a Mac Book Pro 2011, using a new model of Sony HD camcorder (http://store.sony.co...ber=HDRAX2000/H) ..this camcorder model does not have firewire out/input ..it comes only with a component video output, USB, HDMI and composite A/V video output..
    I wonder how can I plug this camcorder to the firewire port of my laptop? Browsing on internet I found that Grass Valley Company produces this converter http://www.amazon.co...=A17MC6HOH9AVE6 ..but I am not sure -not even after checking the amazon reviews- if this device will send the video signal through firewire to my laptop, in order to live streaming properly? ..anyone in this forum could help me please?
    Thanx

    I can't broadcast with the built in iSight webcam... how would I zoom in or zoom out? or how would I pan? I've seem people doing it walking with their laptops but that's not an option for me... there's nothing wrong with my USB ports but that's neither an option to stream video because as far as I know through USB you can't connect video in apple operating systems ..you can for sure plug any video cam or photo camera through usb but as a drive to transfer data not as a live video camera...  is by firewire an old interface developed by apple that you can connect all sorts of cameras to apple computers... unfortunately my new sony HDR-AX2000 camcorder doesn't have firewire output...
    thanx

Maybe you are looking for

  • Stuttering playback

    Hi I am editing in a ProRes LT 422 time line using ProRes LT material 1920 x 1080p. This is on a Mac pro Quad-Core Xeon with 6GB DDR3 and a 4TB esata stripped raid, using OS x10.6.4 and Final Cut 7. I have been suffering from intermittent playback is

  • Can read floppy but not format

    So get this... For whatever reason I suddenly cannot format a floppy disk. I can read some old disks that I have but anytime I try to write to one, it says that the operations cannot be performed. The exact message when formatting (DOS mode) is: "Inv

  • Interesting bug in iTunes 7.0

    I installed iTunes 7.0 (70) last night as soon as it became available. Within 2 minutes I noticed this interesting 'feature' (lets call it a, err, bug). Open iTunes, select a playlist or just 'library' and start some tune playing. Now turn on the nic

  • Which oracle logo should I attach on my resume?

    I have just now passed the  1z0-051 ORACLE Database 11g: SQL Fundamentals I exam by 67% (60% to pass). Also i am familiar to PL/SQL too. And lastly I have done an internship project on it. Is I am eligible to attach oracle LOGO on my reume? if yes, w

  • Locating event selections in library

    So here's the scenario: I have an event library full of clips. I have it in clip view. It's at lowest magnification so that each clip is represented by one...ya know...clip, i.e. not a range of clips. Anyway, I'm working in the timeline and I have a