Boolean Condition on a Tab Not Working

Hello!
I have a tab that should only appear if a record is in the database. I'm using a 'PL/SQL Function Body Returning a Boolean' condition with the following:
DECLARE
t1 varchar2(20);
BEGIN
select GROUP into t1 from pl_department where userid = :APP_USER;
if ((t1 = '-') OR (t1 is null) OR (t1 = '') or (t1 = '%' || 'null%')) then
return false;
else
return true;
end if;
END;
If no data is found in the database, i get an error at the top of my page 'Invalid function body condition: ORA-01403: no data found'.
As you can see I tried to check for 4 different possible values but nothing is working.
Any ideas on what else I can try?
Thank you!
T
Edited by: 73pixieGirl on Dec 16, 2008 6:34 AM

Hello,
You can better use the condition Exists (SQL Query returns at least one row)
In expression 1 you would put : select GROUP from pl_department where userid = :APP_USER;
The problem you are facing is that your code is going into exception. If you really want to keep your code you can adapt it like:
DECLARE
t1 varchar2(20);
BEGIN
select GROUP into t1 from pl_department where userid = :APP_USER;
if ((t1 = '-') OR (t1 is null) OR (t1 = '') or (t1 = '%' || 'null%')) then
return false;
else
return true;
end if;
EXCEPTION WHEN NO_DATA_FOUND THEN return false;
END;
But I would recommend my first suggestion.
Regards,
Dimitri
http://dgielis.blogspot.com/
http://www.apex-evangelists.com/
http://www.apexblogs.info/
REWARDS: Please remember to mark helpful or correct posts on the forum

Similar Messages

  • IE 11 - Open in new Tab Not Working

    When I click on a link that should open in a new tab (or right-click and select Open in new Tab), IE11 Opens a new tab but the screen is blank, the URL is about:blank and the tab title is 'Blank Page'.
    Windows 8.1 x64
    Internet Explorer 11 (Desktop)
    The 'Metro' version of IE 11 still works fine, it's just the Desktop version which is broken.
    I've tried all the fixes listed in the similar thread, but none have helped.
    IE 11 TABS NOT WORKING
    IE 11 opens blank tab

    Thanks, I ran a Command Prompt (Admin) and ran the following scripts:
    ie8-rereg.32on64.cmd
    ie8-rereg.64on64.cmd
    Both seemed to execute correctly, but haven't made a difference.
    Unfortunately they have never been a complete repair and now, due to security/obscurity have been made even less effective.  There was an example in here a while ago in which the poster helped me see that exploiting the original manifests might have
    been a better tack for a repair.  IIRC they uncovered some registry corruption which seemed related to mshtmled.dll but which was not repaired by registering that module and was damage which was only hinted at by looking at the manifest. 
    The poster's repair was found by comparing registries from otherwise identical systems...
    OMG look what this recollection has dredged up:  <lol/>
    http://social.technet.microsoft.com/Forums/ie/en-us/08f7a0f7-6f4b-4def-b399-12a0c281655a/ie9-wont-open-pages-just-give-a-new-tab-thats-blank?forum=ieitprocurrentver
    Interestingly, I came across another oddity which might indicate the behaviour is some sort of change to the IE security settings. On a site I frequent http://www.makegamessa.com/ none of the links work.
    They've all previously worked and they still work in other browsers, just not my IE. If you click a link it is supposed to open the page in the current window (i.e. not opening a new tab), but nothing happens. However, if I have the F12 developer tools open,
    then the links all work as expected OR if I add the site to Trusted Sites the links also work.
    That sounds like Active Scripting is inhibited.  Scripting would be disabled in a Restricted security zone or in an Internet zone which was set to High level.  Scripting would be enabled in a Trusted security zone.  Scripting would be required
    in order to use IE11 Developer Tools since that is its implementation.  It hadn't occurred to me that that might provide an override for Scripting which had been otherwise inhibited.
    FYI
    Robert Aldwinckle

  • MY FIREFOX NEW TAB NOT WORKING NIETHER WITH + NOR WITH RIGHT CLICKING ON TAB OR DOUBLE CLICK ON TAB

    MY FIREFOX NEW TAB NOT WORKING NIETHER WITH + NOR WITH RIGHT CLICKING ON TAB OR DOUBLE CLICKING ON TAB

    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that temporarily turns off hardware acceleration, resets some settings, and disables add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    *In previous Firefox versions, click on the Firefox button at the top left of the Firefox window and click on ''Help'' (or click on ''Help'' in the Menu bar, if you don't have a Firefox button) then click on ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, theme, or hardware acceleration. Please follow the steps in the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • Tab not working on ALV report output in Persona

    In normal SAP GUI we can move the cursor position on ALV report output between different column by pressing TAB on keyboard. But in case of persona 2.00, TAB doesn't work and we have to click on each cell of the report output whatever we want to highlight. Is there any settings or SAP note we can implement to so TAB will work on persona.
    Thanks,
    harkamal

    Hi Devendra Singh,
    I think it's not possible to show all field values in another Language (Eg Thai) But it's possible if it's short Text, Long Text etc
    SE63 and follow menu
    Translation
    ABAP Objects
    Short Text / Long Text Etc..
    AND
    Translation
    NON ABAP Objects
    For that also you have to maintain it first in SE63..
    [SAP Help1|http://help.sap.com/erp2005_ehp_04/helpdata/EN/77/5719d2492011d1894a0000e829fbbd/frameset.htm]
    [SAP Help2|http://help.sap.com/erp2005_ehp_04/helpdata/EN/b4/54601d77f38e429ffad9e3e11c1b25/frameset.htm]
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7
    ilesh Nandaniya

  • Some Tabs Not Working in System Preferences

    Mac Pro E2008 14Gb/2Tb.  Installed Mavericks over OS X 10.8.4 with no problems.  Was having some problems with selected fonts not showing up in Pages 5.0.  Ran some font diagnostic software, which isolated some problem fonts.  Subsequent to this I noticed that some Tabs do not work in some preference panes.  In particualr, tha advanced tab in Security and Privacy does not work and the advanced tab does not work in Network Preference pane.  Neither does the + tab in that pane but the - does.  Also cannot edit the three locations that I have in my system.
    Found that all is restored when logged into the root account and also into a Maintainence admin account.  I also ascertained that in my faulty account, after taking out the login items plist and starting with no login items, the fault was still there.  Similarly booting into safe mode did not restore the faulty tabs.  I ran font book and deleted all questionable fonts and moved all the user fonts to the /library/fonts folder.  After each action I restarted rather than logging out.  I have tried deleting the systemuiserver.plist and removing the relevant network plists from the user/library/preferences folder.  I have also removed the com.appl.network.eapoiclient.plist and com.apple.systempreferences.plist.  I have also made invisible files visible and gone through the whole system folder/library folder and ~/library folder and deleted old preferences and obsolete files back to 2004 with the result that my system now loads very much quicker, which is an obvious bonus.  However, the problem still remains and is obviously something to do with the main user account.  If I go into root or my maintainence account, I can change or edit some settings which "stick" when I log back into my main account.  I have carried out the mail and iBook update in the mean time which has not changed anything.
    I have also ran diskwarrior and corrected the disk directory, repaired permissions, reset ACL's and emptied various caches using tinker tool system and mavericks cache cleaner.  I have I think very thoroughly inspected the library and ~/Library folders.
    So, synopsis  (1) Definitely the main account.  (2) No logins or safeboot are not the culprits. 
    Whilst not earth shattering and hopefully 10.9.1 may solve the problem, I would be very grateful if anyone could add any further possible problem areas to look at or suggest possible further solutions. 
    <Email Edited By Host>

    Hey there, sounds like you've done a lot of the groundwork already although it's not entirely clear what about the preference panes aren't working. There is further isolation that could be performed however if the issue is isolated to your user account as you mentioned then renaming the home folder library preferences, logging out and back in (preventing login items if any) and testing may give you the results you are looking for. If that works I would copy the files from the renamed Preferences folder *not replacing* existing files when prompted (of course if it doesn't work replace the existing Preferences folder with the original renamed Preferences entirely). The same type of troubleshooting also applies to the user library itself however please be careful about launching apps after renaming the ~/library or the contained prefs folder and before copying unaffected plists and/or supporting files back as unexpected results may follow (i.e. lost or missing data). Also if you are eligible for support (which you almost certainly are as you have very recently installed a new OS) I'm sure Applecare may help find a solution.

  • SQL tab not working in V2.1 EA1 for non-DBA users -- how to fix?

    In v2.1 EA 1 the tab to show the SQL script (DDL) in the object browser is not working for non-DBA users. In the prior version, these users would see a message about DBMS_METADATA and then the message would indicate that an "internal generator" would be used to generate the DDL script. After that brief message the DDL would show up as expected. This doesn't seem to be the case in the newest version.
    I issued the following two grants to a particular user which worked, but I am reluctant to issue the grants to "PUBLIC".
    SQL> grant execute on DBMS_METADATA to XXXXX;
    SQL> grant select_catalog_role to XXXXX;
    So, my questions are:
    1) Will the old functionality (that didn't require these privileges) be added to V2 at some point?
    2) What security implications are there for issueing the above grants to PUBLIC?
    NOTE: After granting execute on the DBMS_METADATA package, it still didn't work. I left that grant in place and granted SELECT_CATAOG_ROLE, so I can't say for sure that the 1st grant was required.
    Edited by: user615070 on Nov 19, 2009 9:30 AM
    Edited by: user615070 on Nov 19, 2009 10:06 AM

    An OEM account is separate from the database account. You need to use OEM UI to create an OEM account, however, for certain tasks to be done in the databases which OEM is monitoring they will also require separate database accounts within those databases. For example, to view the performance tab in OEM UI, a database account is required.
    OEM only has two types of users, i.e. Super Administrator and Administrator, but don't go by the names. You can grant an OEM 'Administrator' account access to specific targets and what they can do within OEM, such as only viewing reports, targets, and so on. For access within a database, the user created need not be a DBA either.
    I hope you understand.

  • Spry tab not working correctly after custom changes

    Hi,
    i have used Spry Widget for making tabs in Dreamweaver for one of my project. i have customize these tabs. every thing was working fine until i add the horizontal scrolling to tab by jquery. tabs are not working correctly they do not show the tab content. i am sure there is some linking issue. all this problem begin when i added a addition div within the spry div tags if i remove <div style="overflow: hidden;" class="sc_menu" > every thing start working fine but this div control the scrolling and its important to put there. please can any one guide me what i am doing wrong i have uploaded the project to my server. below is the zip file link to download.
    http://khurram.visbl.com/test.zip
    please let me know if someone having problem in downloading above zip file. also waiting to find a solution for above. hope anyone is here who knows the solution 
    Best - Khurram

    Sorry to disappoint, the structure of the tabbed panels is
    <div id="TabbedPanels1" class="TabbedPanels">
      <ul class="TabbedPanelsTabGroup">
        <li class="TabbedPanelsTab" tabindex="0">Tab 1</li>
        <li class="TabbedPanelsTab" tabindex="0">Tab 2</li>
      </ul>
      <div class="TabbedPanelsContentGroup">
        <div class="TabbedPanelsContent">Content 1</div>
        <div class="TabbedPanelsContent">Content 2</div>
      </div>
    </div>
    As soon as you change that structure, this widget (out-of-the-box) will not work.
    Gramps

  • ShIft caps lock tab not workIng correctly

    My keyboard has started to behave strangely.
    The left shIft key dIsplays an I.
    The caps lock key does nothIng and doesnt lIght up. tab does not work. If I type I and n together It becomes IN. enter key goes back to begINnINg of sentance. typINg thIs Is very dIffIcult as nothINg Is doINg what I want It too. any help would be greatly apprecIated.

    Hey,
    Sorry to hear about the keyboard problem.
    In a post a while back had this to say.  He makes a suggestion that the keyboard might need to be replaced, then the person with the question tried something else.  You might take a look and see if there's something there that will help.
    Thanks for coming to the forum.
    Hope I helped,
    GeorgeFN
    I work on behalf of HP.

  • IWeb Navigation Tabs Not Working

    Hi,
    I just posted my webpage to my school network folder... and the navigation tabs on the "About Me" page are not working.. they work on every other page. I thought maybe it was the page, so I deleted it and created a whole new "About Me" page and ran into the same problem. The site is http://people.clemson.edu/~lindsaa/GenEd_ePortfolio/HomePage.html

    Bonjour
    The notebook image was too high. You had to lower it (15 pixels down).
    I see you changed your template. An advice : use only one template for all the pages of your website

  • Ajax tabs not working when asp dropdown list in the tab

    I am using asp.net 3.5 framework. My page has modelpopup in that ajax tab controls used. one of the tab has asp:dropdownlist, this dropdown list is binding data from dataset. the tab which has dropdown lists is not working. it is working fine in IE9.0.
    Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.

    changed to enableEventValidation="false", then it is working fine.

  • ICloud tabs not working / syncing

    I have an iPhone 4 and iPad 2. Both now run iOS 6.  iCloud tabs are not working on either device (I just see the cloud icon).  I did work throu the troubleshooting (http://support.apple.com/kb/HT5372) but no joy.  Anyone see this..?

    I have an iPhone 4S and an ipad3, both updated to iOS 6.  The icloud tab on the ipad doesn't show anything. The icloud bookmarks on the iPhone are showing open tabs from my ipad, but funny thing is...those tabs are no longer open.  I've turned off icloud on both devices repeatedly, turned off and on both devices as directed in troubleshooting...still have same result. Very little info on this issue.  Spent WAY too much time trying every conceivable solution. Only thing I haven't tried is a total reset of the ipad.  I'm trying to be patient and see if there is something simple I'm missing. HELP!

  • Reinstalling HP s3400f to new condition if F11 is not working

    How do I Restore the PC to 'New' condition if my F11 is not working? I've changed keyboards and found that it's not the keyboard.
    I guess another question would be: How do I get the F11 button to work?

    You must start tapping the F11 key when you boot the computer if your trying to do a Factory Restore.  If you are running Vista it would be F10.
    Did you creater recovery disks when you first got the computer?
    Please mark my post as SOLVED if it has resolved your problem. It helps others with similar situations.

  • Tab Order under Control Properties - Display Tab not working

    At present I'm trying to order a couple of Input-Fields and Checkboxes for the Tab-Key. Therefor I tried to use the "Tab Order" Property in the Control Properties - Display Tab - Section: Layout - Tab Order.
    In the SAP Library this property is described that way:
    When user tabs through the controls of the component in runtime, the number indicating what place this control has in the tab order. Note that -1 removes the control from the tab order entirely and 0 indicates that it is highlighted according to its appearance in the component
    Source: [Help.sap|http://help.sap.com/saphelp_nw70/helpdata/en/42/c2ba7f545e3116e10000000a1553f7/frameset.htm]
    The problem now is that VC is completely ignoring this property and just using the tab order in the way the (Input-) fields where created.
    At present I don't see any opportunity to give my "Form view" any logical tab order.
    Is there any workaround? Is it a bug? Is there something I'm doing wrong?
    Thanks for your help in advance.

    Hi,
    It seems that this tab order works only for few of the controls like pushbutton, radio button, checkbox, toggle button...
    i too tried this in my model but it was not working for the input fields of other types.
    regarding -1 -2 ... these values work normally as per their values here -1 -2 order functions just like 2 1.
    hope this helps you.
    Regards,
    Rk.

  • Tab not working properly for Datagrid ItemEditor ComboBox

    When you run the app type a1 in the find an App combo box then hit the tab key.
    Click in the 3rd row in the As Bs column and a combobox will show.
    Type a3 and then hit enter.  Notice that A3 is saved as the selected item and saved to the dataprovider
    Hit the backspace key and hit enter.  Notice that the  null is saved and nothing is selected.
    Type a3 again and hit enter.
    Hit the backspce again but this time hit the tab key.  Notice the previous value is back.  ooops.
    {Code}
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx"
                   xmlns:vo="valueObjects.*"
                   width="100%" height="100%">
        <fx:Script>
            <![CDATA[
                import mx.collections.ArrayCollection;
                import mx.events.FlexEvent;
                protected function aCBLabel(item:Object):String
                    if (item != null)
                        return item.name;
                    else
                        return "";
                protected function bDG_creationCompleteHandler(event:FlexEvent):void
                    bDG.selectedIndex = 0;
                protected function bAFormat(item:Object, column:DataGridColumn):String
                    if (item [column.dataField] != null)
                        return item [column.dataField].name;
                    else
                        return "";
            ]]>
        </fx:Script>
        <fx:Declarations>
            <vo:ADto id="aDto"/>
            <vo:BDto id="bDto"/>
            <s:ArrayCollection id="aList">
                <vo:ADto>
                    <vo:id>1</vo:id>
                    <vo:name>a1</vo:name>
                    <vo:bs>
                        <vo:BDto>
                            <vo:id>1</vo:id>
                            <vo:aDto>
                                <vo:ADto>
                                    <vo:id>1</vo:id>
                                    <vo:name>a1</vo:name>
                                </vo:ADto>
                            </vo:aDto>
                        </vo:BDto>
                        <vo:BDto>
                            <vo:id>2</vo:id>
                            <vo:aDto>
                                <vo:ADto>
                                    <vo:id>2</vo:id>
                                    <vo:name>a2</vo:name>
                                </vo:ADto>
                            </vo:aDto>
                        </vo:BDto>
                        <vo:BDto>
                            <vo:id>0</vo:id>
                        </vo:BDto>
                    </vo:bs>
                </vo:ADto>
                <vo:ADto>
                    <vo:id>2</vo:id>
                    <vo:name>a2</vo:name>
                    <vo:bs>
                        <vo:BDto>
                            <vo:id>3</vo:id>
                            <vo:aDto>
                                <vo:ADto>
                                    <vo:id>3</vo:id>
                                    <vo:name>a3</vo:name>
                                </vo:ADto>
                            </vo:aDto>
                        </vo:BDto>
                        <vo:BDto>
                            <vo:id>0</vo:id>
                        </vo:BDto>
                    </vo:bs>
                </vo:ADto>
            </s:ArrayCollection>
            <s:ArrayCollection id="bAList">
                <vo:ADto>
                    <vo:id>1</vo:id>
                    <vo:name>a1</vo:name>
                </vo:ADto>
                <vo:ADto>
                    <vo:id>2</vo:id>
                    <vo:name>a2</vo:name>
                </vo:ADto>
                <vo:ADto>
                    <vo:id>3</vo:id>
                    <vo:name>a3</vo:name>
                </vo:ADto>
            </s:ArrayCollection>
        </fx:Declarations>
        <fx:Binding source="aCB.selectedItem as ADto" destination="aDto"/>
        <s:Form id="AForm" width="700" height="170">
            <s:layout>
                <s:BasicLayout/>
            </s:layout>
            <s:HGroup x="0" y="50" width="670" height="60">
                <s:Label height="25" fontWeight="bold" text="Find an A" verticalAlign="middle"/>
                <s:ComboBox id='aCB'
                            prompt="Enter or Select an A Name"
                            labelFunction="aCBLabel"
                            x="110" y="10" width="375">
                    <mx:ArrayCollection id="asList" list="{aList}"/>
                </s:ComboBox>
            </s:HGroup>
        </s:Form>
        <mx:DataGrid id="bDG" x="10" y="140" width="450" height="200"
                     editable="true"
                     dataProvider="{aDto.bs}"
                     creationComplete="bDG_creationCompleteHandler(event)">
            <mx:columns>
                <mx:DataGridColumn id="bidDC"
                                   headerText="id"
                                   editable="true"
                                   dataField="id"
                                   editorDataField="value"
                                   width="50"/>
                <mx:DataGridColumn id="bNameDC"
                                   headerText="As Bs"
                                   editable="true"
                                   dataField="aDto"
                                   labelFunction="bAFormat"
                                   editorDataField="value"
                                   width="150">
                    <mx:itemEditor>
                        <fx:Component>
                            <s:MXDataGridItemRenderer implements="mx.managers.IFocusManagerComponent">
                                <fx:Script>
                                    <![CDATA[
                                        import mx.collections.ArrayCollection;
                                        import mx.controls.dataGridClasses.DataGridListData;
                                        import mx.controls.listClasses.BaseListData;
                                        import mx.events.FlexEvent;
                                        import spark.events.DropDownEvent;
                                        import spark.events.IndexChangeEvent;
                                        [Bindable]
                                        public var bAs:ArrayCollection;
                                        protected function cb_InitializeHandler(event:FlexEvent):void
                                            bAs = outerDocument.bAList;
                                            aDto = outerDocument.bDG.selectedItem.aDto;
                                            if (aDto != null)
                                                var t:ADto;
                                                for (var i:int = 0; i<bAs.length; i++)
                                                    t = bAs[i];
                                                    if (aDto.id == t.id)
                                                        cb.selectedIndex = i;
                                                        break;
                                        override public function setFocus():void
                                            cb.setFocus();
                                        public function get value():ADto
                                            if (cb.isDropDownOpen)
                                                cb.closeDropDown(true);
                                            cb.validateNow();
                                            aDto = cb.selectedItem as ADto;
                                            return aDto
                                        protected function cb_closeHandler(event:DropDownEvent):void
                                            aDto = cb.selectedItem as ADto;
                                    ]]>
                                </fx:Script>
                                <fx:Declarations>
                                    <vo:ADto id="aDto"/>
                                    <!-- Place non-visual elements (e.g., services, value objects) here -->
                                </fx:Declarations>
                                <s:ComboBox id="cb"
                                                width = "100%"
                                                prompt="{aDto.name}"
                                                dataProvider="{bAs}"
                                                labelField="name"
                                                initialize="cb_InitializeHandler(event)"
                                                close="cb_closeHandler(event)">
                                </s:ComboBox>
                            </s:MXDataGridItemRenderer>
                        </fx:Component>
                    </mx:itemEditor>
                </mx:DataGridColumn>
            </mx:columns>
        </mx:DataGrid>
    </s:Application>
    {Code}
    {Code}
    package valueObjects
        import com.adobe.fiber.services.IFiberManagingService;
        import com.adobe.fiber.valueobjects.IValueObject;
        import mx.collections.ArrayCollection;
        import valueObjects.BDto;
        import com.adobe.fiber.core.model_internal;
        use namespace model_internal;
        public class ADto implements com.adobe.fiber.valueobjects.IValueObject
            private var _internal_id : int;
            private var _internal_name : String;
            private var _internal_bs : ArrayCollection;
            model_internal var _internal_bs_leaf:valueObjects.BDto;
            public function ADto()
            public function get id() : int
                return _internal_id;
            public function get name() : String
                return _internal_name;
            public function get bs() : ArrayCollection
                return _internal_bs;
            public function set id(value:int) : void
                var oldValue:int = _internal_id;
                if (oldValue !== value)
                    _internal_id = value;
            public function set name(value:String) : void
                var oldValue:String = _internal_name;
                if (oldValue !== value)
                    _internal_name = value;
            public function set bs(value:*) : void
                var oldValue:ArrayCollection = _internal_bs;
                if (oldValue !== value)
                    if (value is ArrayCollection)
                        _internal_bs = value;
                    else if (value is Array)
                        _internal_bs = new ArrayCollection(value);
                    else if (value == null)
                        _internal_bs = null;
                    else
                        throw new Error("value of bs must be a collection");
            private var _managingService:com.adobe.fiber.services.IFiberManagingService;
            public function set managingService(managingService:com.adobe.fiber.services.IFiberManagi ngService):void
                _managingService = managingService;
    {Code}
    {Code}
    package valueObjects
    import com.adobe.fiber.core.model_internal;
    import com.adobe.fiber.services.IFiberManagingService;
    import com.adobe.fiber.valueobjects.IValueObject;
    import valueObjects.ADto;
    import mx.collections.ArrayCollection;
    use namespace model_internal;
    public class BDto implements com.adobe.fiber.valueobjects.IValueObject
        private var _internal_id : int;
        private var _internal_aDto : ADto;
        private static var emptyArray:Array = new Array();
        public function BDto()
            _internal_id = 0;
        public function get id() : int
            return _internal_id;
        public function get aDto() : ADto
            return _internal_aDto;
        public function set id(value:int) : void
            var oldValue:int = _internal_id;
            if (oldValue !== value)
                _internal_id = value;
        public function set aDto(value:ADto) : void
            var oldValue:ADto = _internal_aDto;
            if (oldValue !== value)
                _internal_aDto = value;
        private var _managingService:com.adobe.fiber.services.IFiberManagingService;
        public function set managingService(managingService:com.adobe.fiber.services.IFiberManagi ngService):void
            _managingService = managingService;
    {Code}

    the reason the tab was not working is because it was not changing the selection and just exiting the combo box.  So, in the value function add if (cb.textInput.text == "") cb.selectedIndex = -1;  This will change the selection as desired and fixes the problem.

  • Shift-Tab not working

    For some reason, using Shift-Tab to select fields in reverse does not work properly in Safari and other browsers (Chrome, Firefox). When I hit Shift-Tab, the browser window closes, or, if more than one tab is open, I am warned about closing all the tabs. This is not a new problem but I cannot recall when it started. Thanks.           

    I looked in System Preferences/Keyboard which was fine but then realized I have Witch installed. I looked at triggers there and of course, the trigger for closing a window was Shift-Tab. Deleting that fixed the problem. Thanks.

Maybe you are looking for

  • BOM in standard PURCHASE order/requisition

    I would like to use BOM as a specification of a "group" of materials procured many times in the same or similar configuration.(eg. servers with specific configuration listing all parts). Is it possible, to use material BOM in standard purchase order

  • Cannot sort photos in slideshow

    When creating a slideshow it seem not to work as expected: 1) I cannot sort the photos as I want. When I drag and move a photo it reorders everything in a for me rabdom way and nothing is in the place I expected it to be. 2) I cannot edit text in the

  • This phone is linked to an iTunes account

    I have bought a second hand iphone 4 s from eBay and when I try to set it up it says this phone is linked to an iTunes account which I obviously don't have details for is there anyway around this ? Many thanks

  • Web sites do not require me to authenticate after FF4 closes

    I recently upgraded to FF4. Web site that require authentication even after I close Firefox - maintain that username and password rom the pop up box that appears assking for my login and password. It isn't a setting I have turned on. The only way to

  • IronPort email encryption config precedence

    Hi, I'm reading thru the IronPort Email Config Guide for Email encryption. I have noticed up to three different ways of requesting certain encryption parameters. I'd like to make sure I understand the order of precedence for these different methods,