Dynamic independent UI tab

Hello gurus,

I'm new in the adf and the use of 11.1.2.3. I use dynamic UI tab to open the sub modules. I allowed to open multiple instance unique task as dynamic tab flow, but the question is if make some kind of research on a single instance of the tab, it also reflects on the other instance. I want these two instance of the same workflow must be separate and independent. I added the sub as adf jar modules.

Any suggestion...

Thank you

This task flows have isolated mode (does not control the call of the workflow data).

Take a look at behavior--> Transaction

Tags: Java

Similar Questions

  • Dynamic UI - open tab once

    Hi gurus,

    I use Jdev 11.1.2.3. I have a problem with the tab dynamic ui. Tab opens fine in the templete, but once I got close a tab and try to open it again (same tab). It is impossible to open it. No error no. Exception is there. I use Launcher.java example in the example of the dynamic tab UI.

    Advice me please.

    Thanks in advance.

    Hello

    your post does not provide sufficient details to answer your question. Can you provide a testcase? If so, send it my way in a zip file that you rename to "decompress." My email address is in my profile OTN (just click on my name to the left). Make sure that your mail to me that you add a node to this thread

    Frank

  • How to dynamically create a tab?

    Hello everyone.

    I try to use the native SDK rather webworks, and I'm sometimes difficulties.

    I'm creating application with typical scheme:

    ListView-> TabbedPane-> ListView

    (List of collections-> tabs for models-> view model)

    If the user selects an item in the first posting of the list I so need the tabs, but if the user selects another one I need other tabs.

    Unfortunally tabbedPane controls don't dataModel property. It is only from the listView.

    So, I create Datamodel and manually load the XML with tabs:

    TabbedPane {
    
        id: tabbedPane
        showTabsOnActionBar: false
    
        attachedObjects: [
            GroupDataModel {
                id: dataModel
            },
            DataSource {
                id: dataSource
                source: "/data/list.xml"
                onDataLoaded: {
                    var items = data.listItem;
                    for (var i in items){
                        var tab = new Tab({title:items[i].name});
                        tabbedPane.add(tab);
                    }
    
                }
            }
        ]
    

    The data is loaded with success, but bb.cascades is not Builder for tab!

    I see some builders for Button, Label, and other controls, but 10 to 15 controls mybe created by other means?

    I know how it resolves in C++, but I want to know - perhaps QML-method exist?

    Are you sure it's a good idea? If you have a large number of items, which will create a better user experience, I think.

    That said, if you know you have does not exceed a certain number of elements and, therefore, tabs, you can create them in advance in your QML and add them (or remove) to your TabbedPane to give a dynamic effect.

    See https://github.com/blackberry/Cascades-Community-Samples/blob/master/PasswordSample/assets/main.qml#... for an example where I've done it myself.

    Hope that this help somehow small.

    Martin

  • ADF-dynamic UI Shell Tabs

    Hi all

    I use Jdeveloper 11.1.2.4.

    USE CASE-

    I implement dynamic UI sell in my application. Where, by clicking on the left navigation, the new taskflow opens in a tab (using API).

    Ex, on clicking the search with navigation link, SearchTaskFlow opens in a new tab. It works great so far.

    SearchTaskflow has two Jsff leader (searchEmp & DetailsEmp), by selecting a line in the searchEmp page, the detailsEmp page shows the details of the employee. In my case, detailEmp is the part of the same TAB.

    To display the page of detailEMP (who used detail), in a new TAB.

    The interface shell dynamic user takes for my use case? Allows to create a new tab when running, which suits me.

    Suggest me how to achieve this.

    Concerning

    Problem solved.

    Cause - launcher file, TabContext.getCurrentInstance () was null for me and the NPES occurs.

    Solution-added/set the parameter for the tabContext. (Added the new parameter in the Taskflow bounded. ex, parameter = tabContext & Values = #{pageFlowScope.tabContext})

    See you soon!

    Concerning

  • Package APEX to dynamically access the tabs in the menu?

    Hello community!

    We must build a dynamic authorization to the navigation of our application, so, each tab will have a plsql as a condition function, which evaluates the user authorization to respective tabs in a sql query, returning true or false.

    Now I would like to build a monitoring report, which lists all tabs and displays authorization (LDAP) for each tab group, as appropriate.

    To achieve this, I was wondering if there is a bunch of apex which are available to display all the information of interest to all of the existing tabs: tab label, pages, condition parameters, hierarchy (parent or child), in order to get an overview of the current configuration and create a user-friendly interface to link new user groups for the authorization menu tabs.

    I searched for a while and not find anything, but I'm sure its possible with buildin functions apex law. So I hope you can help me on my way.

    Thank you very much in advance,

    Best regards

    Tobi

    Version 4.2 of the APEX

    Hey Tobi,

    Have you looked at the sight of the APEX, APEX_APPLICATION_TABS?

    Jeff

  • dynamic generation of tabs or accordion

    I need to display information as follows:
    Dept has
    Group 1
    Position 1-1
    Position 1-22
    Group 2
    Position 2-1
    B Dept
    Group 1
    etc.
    Currently do using < cfoutput query = "myQuery" group = "Dept" > and so on to create div tags that I then show and hide with DHTML/Javascript
    The number of departments change as do groups and positions, so the divs must be generated dynamically based on a query.
    Can be done the same thing in Flex 2 with accordians or tabs?
    Last question is my webhost does not have Data Services installed so I wiould have pr - compile SWF files. If this were doable in Flex 2 SWF of pre-compled would always implement the dynamic creation of the tabs/accordians?

    Hello

    Tab controls and the accordion can have their navigation dynamically modified. Both use the children containers (for example a cloth) - when you first receive your data from departments, the removeAllChildren() method clears the existing tabs/accordion tabs, then you need to create and addChildren() to rebuild the interface.

    See you soon,.

    Simon.

  • Add a tab dynamically in C++ or QML (with QML existing as the content of the tab)

    Hello

    I'm trying to dynamically add a tab in an existing TabbedPane.  I am able to do that through C++ with:

    Page* page = Page::create();
    Tab* tab = Tab::create().title("title").description("description");
    tab->setContent(page);
    app->tabbedPane->add(tab);
    

    .. .but I don't want to add an empty Page.  I want to instantiate a document QML existing as content tab, in the same way that I defined the first tab in QML:

    Tab {
         id: defaultTab
         objectName: "defaultTab"
         title: "title"
         CMLocationView {
         }
    }
    

    Is this possible in C++?  In QML?  In both?

    Thank you!

    In QML

    TabbedPane {
        id: tabbedPane
        ...
        attachedObjects: [
            ComponentDefinition {
                id: pageDefinition
                source: "asset:///UI.qml"
            }
        ]
        function newTab() {
            var c = "import bb.cascades 1.0; Tab{}";
            var tab = Qt.createQmlObject(c,tabbedPane,"newTab")
            tab.content = pageDefinition.createObject(tab);
            tabbedPane.add(tab)
        }
    }
    

    My little demo here

    https://github.com/congdanhqx/BB10-example/tree/master/tab-demo

  • How to focus and to navigate the dynamic tabs UIShell by keyboard

    Hello


    I use the UIShell taking the dynamic concept of tab. Here, I need to give the keyboard focus navigation, and navigation between dynamic tabs. I have given in providing access key concept, in sending the title of label (workflow) above with the & and the title displayed by the textAndAccesKey attribute. But in the concept of the tab dynamic, I shouldn't use it, since h allowing the user can open the same workflow more than once (with only accesskey that several tabs will be there). is there any other possibility of quick access without using the concept of accesskey as how will IE tab navigation, and Mozilla works by pressing CTRL + TAB.


    Kind regards
    Brahma...

    Published by: Brahma on August 13, 2010 03:37
  • Dynamic FG in of multiple called vi

    I have an application in which the primary vi, I load any incoming number of instances of the same vi and its façade.  Each instance of these "Sub main" environment vi, I am trying to assign their own index in a table functional global cluster, like a global local, that can be called within each sub - vi of each main secondary instance.  This is so that each instance of the outlet auxiliary and their subvi can access their own set of variables, constants, tasks, etc. from the main FG even.  The problem that I am running is the way to label each vi reading from / writing of such Mt so that the read/write data are placed in the index suitable for the main officer of the parent of this vi.  I thought to be attributed to each hand under a tag in the title of their window and using the "parent of the appellant get" package openg read this tag and index the FG, but that would mean I have to tag each vi called in Sub main, and when the final vi children are N levels ranging from the main secondary It can get hairy.  I feel like I could be overlooking something really simple, but it has not yet made for me.

    Thank you very much for the help!

    It reminds me of the nugget of Ben a few years where he created a number of dynamic independent references with the used small case live

    Rather than the colored boxes, you could generate FGVs

    EDIT: When you create your Sub Main screw, you use VI models? Otherwise, they are a very good way to manage dynamic screw clones

  • Skinning - dynamic Shell UI

    Hello
    Although I have found a lot of discussion on the dynamic Shell UI Skinning, none of them have any concrete solution. Anyone who has done earlier or not any idea please help answer the 2 questions below

    (1) can I use the default template and always apply the skin to change the background color (i.e., it is the main requirement from now on), tab color etc.,?

    or

    (2) should I create my own version of the model to apply the skin?

    According to Frank to change the model of dynamic in The Tabs UI (interface User Shell) theme shell counting is possible, but if I could get a few more details where and how it would be really great.

    Receive your answer. Thank you!

    -SS

    Hello

    See: http://docs.oracle.com/cd/E23943_01/web.1111/b31973/ap_config.htm#sthref406

    If you assign a web.xml context parametere for org.apache.myfaces.trinidad.DISABLE_CONTENT_COMPRESSION file and set it to false, then using Firebug in Firefox, the names of the skin applied to a component look like af_component_area (e.g. af_inputText_labell) which you translate to for example af | inputText::label

    As Chris has said, some components have associated style class names to allow the specific instance count (that is, the name of the style class is added to the definition of the skin). For information on which component has a style applied class, I suggest to download the source code of Tabshell dynamic and check the component you want to skin. The skin itself is better developed using the Visual editor of skin (stand alone for JDeveloper 11 g R1 or shipped for JDeveloper 11 g R2)

    See: http://www.oracle.com/technetwork/issue-archive/2011/11-nov/o61adf-512006.html

    Frank

  • FLASH CS4 - tabs of the text object?

    Just learn Flash CS4 and I cannot believe you cannot create or put the tabs in a text object. You can set tabs for editing actionscript, but not in a text object. Are you kidding me? Same wordpad can do that. Please tell me that there are a few keystrokes hidden or something. Why is the text-formatting so hard when you can put things in 3D... I'm puzzled.

    fix.

    or, use a dynamic textfield, set tabs using actionscript and assign the text with actionscript.

  • Select a tab programmatically in a navigation tab

    I have an Application with a TabNavigator component. I dynamically add browser tabs, and I want the new tab to be selected and displayed. I can't find any way to do it programmatically.

    Any suggestions?

    I have attached a small version of my application, but I noticed that when it is run locally, the addTab() method adds a URL parameter for selectedIndex and I think that this may be screwing things up.

    Thank you

    Eric.

    Add a call to validateNow after addChildAt and before you set the selectedIndex property.

    tabNav.addChildAt (_canvas, tabNav.numChildren - 1);

    tabNav.validateNow (); prepare for the next job tabNav!

    var _canvasAdd:Canvas = tabNav.getChildAt(tabNav.numChildren-2) in canvas;

  • Issue of concurrency in OS 7 DB

    Hello

    We do a regression test on a real device running OS 7 (7.0.0.187) and we are seeing strange errors at any given time. Here's the scenario:

    1. the user clicks on a button

    2 using the window.open we open a separate tab. This newly opened tab does some processing, including updates of the DB and XHR

    3. the original tab/windows continues to treat and also some updates of the DB.

    4. so intermittently, we see the following message appears: could not open a transaction in the database. Error code 1

    Based on the error text, we start from the principle that it is a problem of locking on the DB. However, what is strange, is that we have never seen this problem in the OS6. If something has changed in the 7 operating system which makes the base engine behave differently? Or maybe our hypothesis is completely wrong.

    Any ideas/suggestions would be welcome.

    Alon

    Hey Alon,

    I believe that this is caused by the fact that before 7.0, it there was only a single JavaScript threead for all independent browser tab that you run on. From 7.0 each tab has its own thread.

  • OAuth2: Refreshing token before application starts

    Hi guys!

    I desperately need help at the moment. I recently changed my app to use OAuth2, but it gives me an access token that I have to update every hour. The problem is that at the start of my application, I need to call the http API to refresh the token BEFORE any other API calls occur. I tried so many different ways to do this, but I can't get it quite right.

    I tried to use QEventLoop which is what I found online as a way to QNetworkManager requires synchronous (because it is asynchronous by nature). First of all I tried to do this before creating the QML file...

     QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
    

    But then when I leave the QEventLoop, would not continue on with the rest of the code, I guess because the loop main event starts everything after this line in order to create the QML is called. If entering a QEventThread separated until the thread main event started, I can't to get the refund.

    So I tried to do it just after the creation of the QML file via this line above. However, it also doesn't seem to work well because sometimes if the QNetworkReply takes a long time to come back, the QML files already have intiialized and began some other API calls to retrieve the data, without having a valid token to send all they come back as http requests failed them.

    Does anyone know a good way to go about this? I need to present this Http request to update my authentication token BEFORE anything else happens, especially before all other calls API occur because otherwise they won't be valid...

    Thank you!!

    T

    Paratheo wrote:

    I tried using the delegate class to load the tabs as they are needed, but I ran into issues because originally each tab, I have a NavigationPane. ....

    -----

    I do the same thing without a problem. See here my Concept of Navigation using TabbedPane as root and NavigationPanes on the top tabs:

    Paratheo wrote:

    .... The property delegated request a qml source file must have a Page to its root element. I could find a way to maintain my navigationpanes while using the delegate class to dynamically load my tabs. You know a way around this?

    You can do this by using delegates - see the code here. (scroll down to "create dynamics and destroy")

  • Error in loading a file

    I got a request a few years ago and until today, a part of the code worked perfectly.   He was supposed to download a pdf file and attach it to a record in the database.  Now, I get a generic message, and I have no idea what is wrong.  Above all, I am an Oracle DBA and can make enough FC to get so far.   What can add to this to give me an idea of what is wrong?  Thanx.  In the piece of code below, the line of cflocation will just, but I can't do it here.

    < cftry >

    < cffile action = "upload".

    fileField = "requiredFILENAME."

    destination = #newDest #.

    accept = ' application/pdf' >

    < cfcatch >

    < CFLOCATION url = "upload378.cfm? F378_ID = #FORM. F378_ID #& ERROR = we have been unable to download your file. Please try again... & FMBIC_DT = #FORM. FMBIC_DT #& IE_PMO_DT = #FORM. IE_PMO_DT #.

    & IE_PMOMILCON_DT = #form. IE_PMOMILCON_DT #">"

    < / cfcatch >

    < / cftry >


    I looked at this thread. It is now clear to me why Coldfusion is unable to find the destination directory.

    When you started the thread, the value of the destination directory (newDest) has been

    \\TestServer\secure\Authorization\378Docs\

    and the action for the upload form page has been

    \\TestServer\secure\Authorization\upload378Act.cfm

    Form of directory and download destination seems to have the same root, i.e., \\TestServer\secure\Authorization\. However, in the last error message, the value of destination is

    ------wedt-Dev\secure\Authorization\378Docs\

    whereas the action page of the upload form (which you have blanked out) is to

    WEDT\secure\Authorization\upload378Act.cfm \\w...\...\...\

    The respective root directories are different. This suggests that the paths------wedt-Dev\secure\Authorization\WEDT\secure\Authorization\ and \W...\...\...\ belong to 2 different environments, possibly the development and production. In fact, the last error message indicates you are trying to get the code of production (\WEDT\secure\Authorization\) to download files to a destination on the development server (in \WEDT-DEV\secure\Authorization\).

    Now, a possible solution. Use the following definition of dynamic, independent of your destination directory server

    Place the line just before the cffile download tag. It will solve

    ------wedt-Dev\secure\Authorization\378Docs\

    or to

    WEDT\secure\Authorization\378Docs\ \\w...\...\...\

    Depending on which server you are.

Maybe you are looking for

  • Upper left corner of the buttons for Windows

    Hello. I recently opted for PC I found there was a lot more software that I could enjoy. As I did today I was counting Windows to look like Mac OS X El Capitan. He succeeded so far. However, I would like to know how to get the design of the buttons l

  • How to replace the keyboard on Satellite A30?

    I have a replacement for the Satellite A30 keyboard layout, but I have no idea how to start replacing and removing the broken one.Any help will be much appreciated. Thanks in advance!

  • Windows Media Center is displayed when I try to open a PDF file from a web site

    Original title: when I'm on the internet trying to get information through a pdf file box will appear and ask to open, save or cancel. I click to open & so it go, s for microsoft media center what can I do to get the pdf file trying to get informatio

  • I disabled my own cookies and now I can't help? Windows XP and I use Mozilla Firefox?

    (Inadvertently), I disabled the cookies on my computer. Now I can't get to my Hotmail e-mail account. I went by the "tools/options/life exercise private and whatever he says 'enabled' (everything is checked).» I even restarted my computer, but nothin

  • What is the BPA?

    Hi all Need your help! I started to investigate BlackBerry push Service SDK... and there is an example of application. Her clients put called BPA. I understand that this abbreviation means BlackBerry Push API server. Please can someone explain what i