Tab navigation problems

Hi guys, i currently have a form which consists of two text fields, a checkbox a to and from date and then a pile more text boxes.
When the form starts up the to and from date fields are have enabled set to false, but when i click the checkbox which gives the checkbox a value of 'Y' the to and from date become enabled. I have on my when checkbox changed trigger that if checkbox = 'Y' then go to the from date box. thsi works fien but when i press tab my cursor goes to the first text box after to date (ie the textbox which never had enabled set to false) i have set up previous and next navigational items in the properties but this still doesnt seem to fix my [proble.  When i press tab i want the cursor to go to the to date box.
Anyone have any idea why this would be happening? any help would be very much appreciated.
Thanks.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Hi
u can use WHEN-TAB-CHANGED TRIGGER On Form or BLock Level
u have 2 options pls try to use depends on the item's existence in the ...
If it resides in another block pls use...
GO_BLOCK('BLOCK_NAME');
GO_ITEM('DATE');if it is existing in the same block
Rearrange items in the object navigator accordingly..
Pls try to avoid display items from navigation sequences; last item and first item should be navigable...
Hope this helps,
Abdetu...

Similar Messages

  • Tab Navigator Problem

    Hi,
        I have a tab navigator in which i have loaded five canvas. I want the canvas to be loaded after clicking the confirm box.Please give me a code for this.
    Reagrds,
    Jayagopal P.S

    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()">
    <mx:Script>
    <![CDATA[
    import mx.events.CloseEvent; 
    import mx.events.DataGridEvent; 
    import mx.events.ListEvent; 
    import mx.controls.Alert; 
    public var flag:Boolean=false; 
    public function test(evt:Event):void
    if(flag==true){
    evt.preventDefault();
    else
    Alert.show(
    "Do you want to navigate away from this page","Testing",Alert.YES|Alert.NO,this,Confirmfile,null,Alert.OK);}
    public function Confirmfile(obj:CloseEvent):void
    if(obj.detail==Alert.OK){
    flag=
    true;addEventListener(MouseEvent.CLICK,test);
    else
    flag=
    false;}
    ]]>
    </mx:Script>
    <mx:TabNavigator width="103" change="test(event)" id="tabone">
    <mx:Canvas label="First Canvas" width="100%" height="100%">
     <mx:Label text="First Canvas"/>
     </mx:Canvas>
     <mx:Canvas label="Second Canvas" width="100%" height="100%">
     <mx:Label text="Second Canvas"/>
     </mx:Canvas>
     <mx:Canvas label="Third Canvas" width="100%" height="100%">
     <mx:Label text="Third Canvas"/>
     </mx:Canvas>
     </mx:TabNavigator></mx:Application>
    Here i need to display the canvas only after getting the confirmation from alert.In default it shows the alert box after loding the canvas.

  • Tabs in navigation page (Tabs persistance problem)

    Hello all,
    I'm looking for a workaround of tab persistence (the problem in post URGENT! TAB + Folder navigation Problem )
    ; is it possible, somehow, to make a navigation page with tabs, and in those tabs some kind of auto-redirection to the actual pages ? Or any other way using tabs? I just want to avoid image-map style navigation. This tab persistance feature is sooo anoying...
    Please help

    Hello
    I gave it up using tabs for navigation issue. There are too many problems with that. Now I'm using URL-items within navigation pages and that works fine...
    Cheers,
    Chrigel

  • Adding a same component in each tab of super tab navigator creates problem

    When a UI component is created once and added to each tab using super tab navigator in AS 3.0, the component is adding only to the last index of the tab. The component is missing in the previous tab.
    I have given the code below. Please help me why this is happening and the solution for this.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application
            xmlns:mx="http://www.adobe.com/2006/mxml"
            creationComplete="createSuperTabNav()">
            <mx:Script>
                    <![CDATA[
                        import mx.core.UIComponent;
                            import com.tab.navigator.components.SuperTabBar;
                            import com.tab.navigator.components.SuperTabReorderEvent;
                            import com.tab.navigator.components.SuperTab;
                            import com.tab.navigator.components.SuperTabNavigator;
                            import com.tab.navigator.components.ButtonScrollingCanvas;
                            import mx.controls.Label;
                            import mx.controls.Button;
                            import mx.controls.Spacer;
                            import mx.containers.VBox;
                            import mx.containers.HBox;
                            import mx.containers.Canvas;                       
                            import mx.containers.Panel;
                            import mx.core.ScrollPolicy;
                            import mx.core.UIComponent;
                            import flash.events.MouseEvent;
                            public var _tabs : SuperTabNavigator;
                            public var _addBtn : Button;
                            public var _vbox:VBox;
                            public var pageCount:uint;
                            public var tabID:String;
                            private var _comp:UIComponent;
                            public function createSuperTabNav():void
                                _vbox = new VBox();
                                _vbox.percentWidth = 75;
                                _vbox.percentHeight = 75;   
                                _vbox.setStyle("horizontalAlign","center");   
                                _vbox.setStyle("verticalGap", 20);               
                                createTabs();
                                createAddButton();
                                addChild(_vbox);
                            public function createTabs():void
                                _tabs = new SuperTabNavigator();
                                //initTabs();
                                addObjectTab();
                                // Set Properties               
                                _tabs.id = "nav";
                                _tabs.percentHeight = 75;
                                _tabs.percentWidth = 50;
                                _vbox.addChild(_tabs);
                            public function addTab(lbl:String, navigator:SuperTabNavigator, component:UIComponent, getId:String) : Canvas
                                // Create canvas to put into tab
                                var child:Canvas = new Canvas();
                                child.percentHeight = 100;
                                child.percentWidth = 100;
                                child.id = getId;
                                child.label = lbl;
                                child.setStyle("closable", true); 
                                child.addChild(component);  
                                child.setStyle("backgroundColor",0xF8F8F8);
                                navigator.addChild(child);
                                 //trace(_tabs.selectedChild.getChildren().toString());
                                _tabs.reorderTabList();
                                return child;
                            public function createAddButton():void
                                _addBtn = new Button()
                                _addBtn.label = "Add Tab";
                                _addBtn.id = "addTabBtn";
                                _addBtn.width = 75;
                                _addBtn.height = 20;
                                _addBtn.addEventListener(MouseEvent.CLICK, handleButtonClick,false,0, true);
                                _vbox.addChild(_addBtn);
                            public function handleButtonClick(evt:MouseEvent):void
                                //addTab('tab '+Number(_tabs.numChildren + 1), _tabs);
                                addObjectTab();
                                _tabs.selectedIndex = _tabs.numChildren - 1;
                            public function addObjectTab():void
                                var frameCanvas:Canvas = new Canvas();           
                                frameCanvas.horizontalScrollPolicy = ScrollPolicy.OFF;
                                frameCanvas.verticalScrollPolicy = ScrollPolicy.OFF;
                                frameCanvas.percentHeight = 100;
                                frameCanvas.percentWidth = 100;
                                if ( _comp == null )
                                    _comp = addComponent();   
                                frameCanvas.addChild(_comp);
                                // Create container to implement horizontal padding
                                var horizontalPadder:HBox = new HBox();           
                                horizontalPadder.setStyle("backgroundAlpha", 0);
                                horizontalPadder.horizontalScrollPolicy = ScrollPolicy.OFF;
                                horizontalPadder.verticalScrollPolicy = ScrollPolicy.OFF
                                horizontalPadder.addChild(new Spacer());
                                horizontalPadder.addChild(frameCanvas);
                                horizontalPadder.addChild(new Spacer());
                                // Create container to implement vertical padding
                                var verticalPadder:VBox = new VBox();           
                                verticalPadder.setStyle("backgroundAlpha", 0);
                                verticalPadder.horizontalScrollPolicy = ScrollPolicy.OFF;
                                verticalPadder.verticalScrollPolicy = ScrollPolicy.OFF
                                verticalPadder.addChild(new Spacer());
                                verticalPadder.addChild(horizontalPadder);
                                verticalPadder.addChild(new Spacer());
                                // Position padder
                                verticalPadder.setStyle("horizontalAlign", "Left");
                                verticalPadder.x = 0
                                verticalPadder.y = 0;
                                tabID = "page"+ _tabs.getNumberOfTabs()+1;
                                var canvas:Canvas = addTab("Page "+(_tabs.getNumberOfTabs()+1), _tabs ,verticalPadder, tabID);
                                canvas.setStyle("backgroundColor", "#009900");
                            public function addComponent():UIComponent
                                var pageCount:uint = _tabs.getNumberOfTabs()+1;
                                var page:Canvas = new Canvas;
                                 page.width = 250;
                                 page.height = 250;
                                 page.setStyle("backgroundColor", "#FFFFFF");
                                var _pageBtn:Button = new Button();
                                _pageBtn.label = "Button "+(pageCount);
                                _pageBtn.id = "addTabBtn "+(pageCount);
                                _pageBtn.width =100;
                                _pageBtn.height = 20;
                                page.addChild(_pageBtn);
                                return page;
                    ]]>
            </mx:Script>
    </mx:Application>

    Adding an instance moves it, it does not copy it.

  • URGENT! TAB + Folder navigation Problem

    Hi!
    I've got a portal page with two tabs (let's say tab1 and tab2). Inside each of them I have added a portlet(wich is in fact a folder pubilshed as portlet - let's say folder1 and folder2)
    1 - I click on tab1.
    2 - I click on folder1 - it's subfolders are shown. Ok
    3 - I click on tab2
    4 - I click again on tab1
    5 - Instead of folder1, it's subfolders are shown. !!!
    I wan't the page to go to the parent folder each time a tab is selected.
    Thanks in advance

    I have similar problem with tabs and parameter persistence.
    I have portlet with submit form on one page tab.
    Problem is, if user submits data on form, and then moves on other tab, all submited data are send via url parameters again....
    How can I avoid this kind of behaviour..
    I find many peoples with simillar problem, but no one has find solution or workaround for this problem..
    Please help........

  • Why data are not getting poulated in dynamically added tab in a tab navigator???

    Hi All,
    I am facing a very strange problem and need you expert opinion on this. Ok so the problem goes like this:
    In my application i have a tab navigator where i have 2 fixed tabs say tab A and tab B. In tab B I have a data grid where All the user name are getting populated. Once the user clicks on any datagrid row i am dynamically adding a new tab based on username , so if in my datagrid u1,u2 and u3 are getting displayed then once you clik on u1 a new tab called u1 is getting displayed. Code for this goes like this:
    var vbox1: VBox= new VBox();
    box1.label=mydatagrid.selectedItem.uName;
    var sde:* = new searchDetails();
    vbox1.addChild(sde);
    myTabnavigator.addChild(vBox1);
    Application.application.searchdetails.displayall();
    I have created a component called searchDetails where i have designed the page wit various fields for this tab.This also has a method called displayall() which is populating the data in all fields using php an my sql where i have designed the page wit various fields for this tab.
    New tab is getting displayed perfectly. My problem is once the tab is getting displayed fields are not getting populated with data.
    Please let me know what wrong i am doing. I am really struggling

    Hmm.. you have to assign text to the labelfields on creation complete not before that, the fllow will be like this
    var vbox1: VBox= new VBox();
    var sde:* = new searchDetails();
    vbox1.addEventListener(creationcompleteevent,function);
    vbox1.addChild(sde);
    myTabnavigator.addChild(vBox1);
    function(e:event):void{
    box1.label = "text";

  • Applet TAB navigation not working with 1.4.1_01

    I recently upgraded to Java version 1.4.1_01. Now, when I load my applets, the TAB key cannot be used for navigation until I open the Java console and then close it again. To ensure that my the threads in my specific Applet are not the problem, I came up with the following test applet:
    import java.awt.BorderLayout;
    import javax.swing.BoxLayout;
    import javax.swing.JApplet;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    public class TestApplet extends JApplet {
        public void init() {
            super.init();
        public void start() {
            JPanel myPanel = new JPanel();
            myPanel.setLayout(new BoxLayout(myPanel, BoxLayout.Y_AXIS));
            JTextField textField1 = new JTextField("Text Field 1");
            myPanel.add(textField1);
            JTextField textField2 = new JTextField("Text Field 2");
            myPanel.add(textField2);
            JTextField textField3 = new JTextField("Text Field 3");
            myPanel.add(textField3);
            getContentPane().add(BorderLayout.CENTER, myPanel);
        public void stop() {
            super.stop();
    }To ensure that my build environment/options are not the problem, I compiled this applet as follows:
    javac TestApplet.java
    I then came up with the following HTML file for the applet:
    <HTML>
    <HEAD>
    <TITLE>Test Applet</TITLE>
    </HEAD>
    <BODY MARGINWIDTH="0" MARGINHEIGHT="0" BGCOLOR="white">
    <APPLET
    CODE=TestApplet.class
    WIDTH=635
    HEIGHT=500
    ALIGN=left
    VSPACE=10
    HSPACE=10
    >
    </APPLET>
    </BODY>
    </HTML>When I access this test applet, again I am not able to navigate among the text fields with the TAB key. However, if I open the Java console, close it right back up, and refresh my applet, the TAB navigation works. I've tried simply refreshing my applet (as well as a hundred other things) and have had no success.
    Any help would be GREATLY appreciated.
    Thanks in advance

    Looks like this is related to Bug #4707289. To fix this,
    I added the following lines to the above applet:
    textField1.setFocusable(true);
    textField2.setFocusable(true);
    textField3.setFocusable(true);

  • Tab Navigator not loading all tabs at start

    I have a tab navigator with a dataGrid in one tab and another
    dataGrid in another and when I double click the dataGrid in tab 1 I
    want it to go to tab 2 and set the selected item or dataGrid1 to
    dataGrid2. The problem is when I double click on the dataGrid, and
    havent navigated to tab 2 before. This gives "TypeError: Error
    #1009: Cannot access a property or method of a null object
    reference." The tabNavigator's creationPolicy="all" and the
    function that is called on doubleClick is
    private function GotoNext():void{
    if(firstDataGrid.selectedItem!=null){
    myTabNavigator.selectedIndex=1;
    secondDataGrid.selectedItem=firstDataGrid.selectedItem;
    This works if I first click on the 2nd tab then click back on
    the 1st tab, but not if I just double click.
    Any help would be appreciated.
    Thanks,
    Chris

    quote:
    Originally posted by:
    cjwprostar.
    ... The tabNavigator's creationPolicy="all" and ...
    Here's a working example that has this problem..
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.collections.XMLListCollection;
    public var xmlOne:XML=
    <root>
    <data>
    <name>Foo</name>
    <type>Number</type>
    </data>
    <data>
    <name>Bar</name>
    <type>String</type>
    </data>
    </root>;
    public var xmlTwo:XML=
    <root>
    <data>
    <name>Foo</name>
    <type>Number</type>
    </data>
    <data>
    <name>Bar</name>
    <type>String</type>
    </data>
    </root>;
    [Bindable]
    public var sourceOne:XMLListCollection=new
    XMLListCollection(new XMLList(xmlOne));
    [Bindable]
    public var sourceTwo:XMLListCollection=new
    XMLListCollection(new XMLList(xmlTwo));
    public function GotoNext():void{
    if(dgOne.selectedItem!=null){
    tabNav.selectedIndex=1;
    trace(dgOne.selectedItem);
    trace(dgTwo.selectedItem);
    dgTwo.selectedItem=dgOne.selectedItem;
    trace(dgTwo.selectedItem);
    trace("--------------------------");
    ]]>
    </mx:Script>
    <mx:TabNavigator id="tabNav" creationPolicy="all"
    left="20" right="20" top="20" bottom="20">
    <mx:Panel id="tabOne" label="Tab 1" width="100%"
    height="100%">
    <mx:DataGrid dataProvider="{sourceOne.child('data')}"
    width="100%" height="100%" doubleClickEnabled="true" id="dgOne"
    doubleClick="GotoNext();">
    <mx:columns>
    <mx:DataGridColumn headerText="Column 1"
    dataField="name"/>
    <mx:DataGridColumn headerText="Column 2"
    dataField="type"/>
    </mx:columns>
    </mx:DataGrid>
    </mx:Panel>
    <mx:Panel id="tabTwo" label="Tab 2" width="100%"
    height="100%">
    <mx:DataGrid dataProvider="{sourceOne.child('data')}"
    id="dgTwo" width="100%" height="100%">
    <mx:columns>
    <mx:DataGridColumn headerText="Column 1"
    dataField="name"/>
    <mx:DataGridColumn headerText="Column 2"
    dataField="type"/>
    </mx:columns>
    </mx:DataGrid>
    </mx:Panel>
    </mx:TabNavigator>
    </mx:Application>

  • Tab Navigator

    I have problem in giving roll over color for a Tab
    Navigator.I have tried with setting styles such as fillcolors,roll
    over color but not achieved yet. Any suggestions will be accepted.
    Thanks in advance.

    Hello.
    That might be skins. upSkin, downSkin, overSkin ...
    More information is here.
    http://livedocs.adobe.com/flex/201/langref/mx/containers/TabNavigator.html
    Also I made a sample of Vertical TabNavigator.
    This sample use TabBar. But skins are same as TabNavigator.
    http://shigeru-nakagaki.com/index.cfm/2007/8/21/20070821-Vertical-TabNavigator-sample
    Shigeru

  • Tab navigator and swf loader issue

    I have written two flex applications. Each of the
    applications contains a tab navigator control. The direct children
    of this tab navigator are canvases, sized to max.
    i.e.
    <mx:Canvas label="WhateverLabel" width="100%"
    height="100%">
    <!--whatever additional children here-->
    </mx:Canvas>
    Everything works fine, the navigator, all its children and
    grandchildren Application does exaclty as it should ... untill I
    load it into another application using swf loader.
    Our main application is a menu driven app that loads
    individual swf files based on user selection. When either one of
    these programs (using the tab navigator described above) is loaded,
    I get a White Bar across the top of the screen, sized as the Tab
    navigator width.
    the white bar goes away as soon as the user interacts with
    any control, but it still is there on application load. Here is a
    picture of what I am speaking about.
    http://members.cox.net/dragon.magik/whitebar.jpg
    You can see the menu atop the screen as the base application.
    You can then see the panel right beneath it, that is the main panel
    of the application i am having problems with. The white bar, as you
    see, is as wide as my tab navigator. The TN labels are positioned
    correctly, but I don't know why I am getting the white bar. I am
    having the exact same problem with tab navigators in two different
    applications I load into this one control panel. Any help would be
    greatly appreciated. Thanks in advance.

    There is an unsolved bug in adobe.
    You have to solve it manually overriding the function:
    package
         import mx.containers.TabNavigator;
         public class TabNavigatorFixed extends TabNavigator
             public function TabNavigatorFixed()
                 super();
             override protected function  commitSelectedIndex(newIndex:int):void
                 super.commitSelectedIndex(newIndex);
                 if(tabBar.numChildren > 0){
                     // Select the corresponding Tab in the Tab Bar (this  fixes a bug in Flex)
                     tabBar.selectedIndex = newIndex;

  • Tab navigator vertical gap

    Hi all
    I am using tab navigator control, in that i have used skins for the tabs..further i have given 4px border to the tab navigator control now the problem  i am facing is that ,the tabs touches the original border of the navigator.As now the border thickness is 4 px.so the tabs should touch the 4px border thickess not the default border of 1 px thickness..due to this my  tab skin touchess the default border not the new 4 px border..and because of which they are not completely visible.how can i solve this issue..is there any vertical gap property or something else..via which i can achieve this
    please check the attach image which will clear you the picture

    Try making adjustments in CSS using the Flex style explorer. http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html
    Then apply that style to your tab nav.

  • Ellipsis ... show in tab of Tab navigator

    Hi guys,
    I'm using a TabNavigator component with static height, width and 3  static tabs. My problem is that the Tab navigator shows ellipsis in the  label of the first tab whereas it clearly looks that it does not lack  any space in tab width. how do i rectify it?
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"  layout="absolute" xmlns:local="*">
         <local:WLTabNavigator id="tn" x="83" y="60" width="210"  height="200" paddingBottom="0"
                          horizontalGap="1" tabHeight="18"  tabWidth="{tn.width/3}">
             <mx:Canvas label="Contacts" fontFamily="Arial"  fontSize="10">
             </mx:Canvas>
             <mx:Canvas label="SMS" fontFamily="Arial" fontSize="10">
             </mx:Canvas>
             <mx:Canvas label="Calls" fontFamily="Arial" fontSize="10">
             </mx:Canvas>
         </local:WLTabNavigator>
    </mx:WindowedApplication>

    I think this is working as designed. Your TabNavigator is 210px wide and with three tabs you're setting each tab to roughly 70px wide (give or take a pixel for gaps). If you don't set ANY tabWidth you can see that the first tab ("Contacts") wants to be about 78px, but you're only allowing 69-70px for the label, hence the truncation.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"  layout="horizontal">
        <mx:TabNavigator id="tn1" width="210"  height="100"
                         horizontalGap="1" tabHeight="18" tabWidth="69">
            <mx:Canvas label="Contacts" fontFamily="Arial"  fontSize="10">
                <mx:Label id="lbl1" creationComplete="lbl1.text = tn1.getTabAt(0).width.toString();" />
            </mx:Canvas>
            <mx:Canvas label="SMS" fontFamily="Arial" fontSize="10">
            </mx:Canvas>
            <mx:Canvas label="B" fontFamily="Arial" fontSize="10">
            </mx:Canvas>
        </mx:TabNavigator>
        <mx:TabNavigator id="tn2" width="210"  height="100"
                         horizontalGap="1" tabHeight="18">
            <mx:Canvas label="Contacts" fontFamily="Arial"  fontSize="10">
                <mx:Label id="lbl2" creationComplete="lbl2.text = tn2.getTabAt(0).width.toString();" />
            </mx:Canvas>
            <mx:Canvas label="SMS" fontFamily="Arial" fontSize="10">
            </mx:Canvas>
            <mx:Canvas label="B" fontFamily="Arial" fontSize="10">
            </mx:Canvas>
        </mx:TabNavigator>
    </mx:Application>
    I think a better approach is probably to set the TabNavigator container's internal TabBar to the same width of the TabNavigator and let the tabs resize themselves to fit. This may help get you started:
    <mx:TabNavigator id="tn3" width="210"  height="100"
                     horizontalGap="1" tabHeight="18"
                     resize="event.currentTarget.mx_internal::getTabBar().width = event.currentTarget.width;">
        <mx:Canvas label="Contacts" fontFamily="Arial"  fontSize="10">
            <mx:Label id="lbl3" creationComplete="lbl3.text = tn3.getTabAt(0).width.toString();" />
        </mx:Canvas>
        <mx:Canvas label="SMS" fontFamily="Arial" fontSize="10">
        </mx:Canvas>
        <mx:Canvas label="B" fontFamily="Arial" fontSize="10">
        </mx:Canvas>
    </mx:TabNavigator>
    Or, since it looks like you are already subclassing TabNavigator, you could possibly move the logic into your subclass instead:
    package {
        import mx.containers.TabNavigator;
        import mx.events.ResizeEvent;
        public class ResizerTabNavigator extends TabNavigator {
            public function ResizerTabNavigator() {
                super();
                addEventListener(ResizeEvent.RESIZE, resizeEventListener);
            protected function resizeEventListener(evt:ResizeEvent):void {
                tabBar.width = this.width;
    Hope that helps,
    Peter

  • Interesting Result ....... Jump Over Tab Navigation Area.

    I received the following as my rendered page:
    Jump Over Tab Navigation Area.
    HomeHelp
    I was navigating from a page with a single button to a page with a TabSet containing 2 tabs. These 2 Tabs were labeled Home and Help.
    This is occurring on a Tomcat server 5.5.23.
    Any help would be greatly appreciated.

    A bit zen - and not much help, especially for someone, such as I, with a Masters in Drawing (Fine arts) and no formal programming skills whatsoever.  Producing a complex rendering of the human form = easy.
    I think what the problem that I'm having is how to get the image array (which could have an infinate amout of images) and the tab array (which could have anywhere from 1-6 tabs depending on the job) to associate, then pass on said variables to dynamically loaded image (holder) MC.
    To say that Tab 1 would cover images 1-4 all the time could possibly be easy to figure out.  On the other hand, the need is more like:
    Tab 1 is [i] through [n], then passing on the variable result so that first page value is set so the next button could also then compare the that page vs the next image in the linear sequence (ditto for the back button) then passing that on to the page count (dynamic text box) and loading in that page / image.
    back to the drawing board.

  • Still having navigation problems and need help with how to debug

    Hi,
    I've been porting over a servlet project to JSF and I'm still having navigation problems. I thought the problem might have been because the original project used HTML frames and so the "from-view-id" JSP defined the frame/framesets and the specific JSP that does the submit (and so is named in the "from-view-id" is never defined in a "to-view-id" attribute). I've now switched to using an IFRAME, and that resolves that problem. So now the JSP is defined in a "to-view-id" attribute and it includes an named IFRAME that can be used as a target. I press the submit button and I get not the JSP expected butinstead the same JSP displayed inside its own IFRAME.
    Here is the code for the submit. I've simplified it as much as possible with a static action (originally it was a call to a method) just to try and get things to work. This is the current version:
    <h:commandButton value="View Alias" action="foo" styleClass="select" type="submit" />Here is the navigation rule in faces-config.xml. Again, the problem is that SelectManager get redisplayed in the IFRAME instead of display.jsp.
    <navigation-rule>
       <from-view-id>/SelectManager.jsp</from-view-id>
       <navigation-case>
          <from-outcome>foo</from-outcome>
          <to-view-id>/display.jsp</to-view-id>
       </navigation-case>
    </navigation-rule>I have also tried it without the "from-outcome-value" which I presume means that the "to-view-id" gets displayed unconditionally and it still fails. Any ideas on how I can debug this? (I'm using GlassFish if that's important to know)
    Rob Tanner
    Linfield College

    Raymond, The real trick is avoid doing technical things when coming down with the flu (I should also add that I'm a JSF newbie). Reading your original message this time I see what you're suggesting and found a conversion error although I don't understand it. Here's the code (including the <h:message/>):
                <h:selectOneMenu value="#{members.dcodes}"
                  style="color: #7f0000" id="selector">
                  <f:selectItems value="#{members.departmentList}" />
                </h:selectOneMenu> 
                <h:message for="selector" style="color:white"/>And here's a snippet of the generated HTML:
    <select id="j_id_id26:selector" name="j_id_id26:selector" size="1" style="color: #7f0000">
             <option value="aad" selected="selected">Academic Advising</option>
         <option value="aaf">Academic Affairs</option>
         <option value="adm">Admission</option>
         <option value="up">Upward Bound</option>
    </select>If I select "Admission" for example, the error I get is:
    Conversion Error setting value 'adm' for 'null Converter'.Since everything is a String value, I don't get the error. Could someone please enlighten me.
    Thanks.

  • Tab navigation does not show at all in FP 10 it shows in FP9

    Hi,
    I have module that is loaded at runtime,
    it has simple tab navigation with 3 children,
    in FlashPlaer 9 Debug, tab navigation shows fine, even
    thought for some reason it looks like linkbar :)
    also numericStepper looks like inputBox and ComboBox has no
    arrow, (they all look fine in FB 3.2)
    in Flash player 10 tab navigation does not show at all, is
    there any obvious thing that I am missing ?
    I am guessing something terribly wrong with flex styles, but
    I am not overriding any styles,
    my environment :
    vindows Vista 64 bit (although I use jvm 32)
    project is build with latest flex sdk :flex_sdk_3.3.0.4589
    P.S: I cant attach image here, so I will record video
    tomorrow, if that will help.
    thanks in advance
    Levan

    bump :)
    anybody , please please :)

Maybe you are looking for

  • How to un-check everything in a Multi-selection list box in SP2013?

    When a radio button is selected/un-selected, i would like to clear all the checkboxes that were checked in a MSLB.  I created a rule for the condition but in the action, how to create this uncheck action? Thank you

  • Error when running any kind of adobe based webdynpro application

    Hi, I dont get this error for other kinds of web dynpro application, but whenever I deploy an adobe based application, I get the following error on running it. My Portal is NW04S SP9. I have a very simple adobe application and atleast the initial pag

  • Volumes and Applications won't open in Tiger

    I just got a new iBook lab with Tiger. I can't seem to open any Volume or Application with a double click. I'm only successful with the Open Apple-O command. Is there a new default setting that I'm missing? Sorry if this has been posted before, but I

  • Not Able to install in linux

    Hi , i installed weblogic 7 in a linux box, installation went fine but when i am accessing thru browser it is giving the following error Error 404--Not Found From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1: 10.4.5 404 Not Found The server has n

  • Digitizing vinyl records

    One of the employees at a local Apple Store said that GarageBand was all I needed to get my vinyl LPs into iTunes, whereas prior posts to this discussion have recommended Boombox. Forgive my wordiness, but in the interest of being thorough: 1) I am u