Tab groups change when deleting a tab

I have 4 tab groups; when I delete a tab in one group (and it's the last tab in the sequence), that tab group closes and a different tab group opens.

All groups on any level are deleted when the site is removed. This can apply on sub-site levels that have unique permission levels too.  As Alex mentions, this has no impact on the integrity of other site collections.
Steven Andrews
SharePoint Business Analyst: LiveNation Entertainment
Blog: baron72.wordpress.com
Twitter: Follow @backpackerd00d
My Wiki Articles:
CodePlex Corner Series
Please remember to mark your question as "answered" if this solves (or helps) your problem.

Similar Messages

  • Why does my currently active tab group change when I close tabs?

    I think it's a bug, but I can't figure out where to post a bug report. I use tab groups (Firefox 5.0), and love them. But often, when I close a tab in one group, I get automatically switched to another tab group. More rarely, Firefox rearranges which tabs are in which groups when this happens. This usually seems to happen when I'm on a pinned "App Tab" (Gmail), and then choose to close one of the tabs via clicking its X with the mouse. I currently have 6 tab groups, all but one of which are named.

    Bizarre that we've still got this bug and we are already up to FF7, anyone at mozilla care about quality?

  • Help! How do I exit tab groups and get my session/tabs back. The icon doesn't toggle and instructions don't say how to get back -- first try and I'm stuck.

    This is the first time I tried to use tabgroups. I clicked on the bricks-style icon and then couldn't see any way to get back to my current firefox session and open tabs. It doesn't seem to be a toggle, no "go back" or anything else I can see. Help!

    In the Tab Groups window, I have a Close (X) button in the right upper corner (along with the Minimize and Maximize buttons). Clicking the Close (X) button will return you to your normal browsing session. In addition, SHIFT+CTRL+E will return you to to your normal browsing (SHIFT+CTRL+E also will open the Tab Groups window).
    *Article about Tab Groups --> http://www.makeuseof.com/tag/organize-manage-firefox-open-tabs-tab-groups/
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • How do i delete a tab and can I delete a tab and keep it as an apptab?

    how do i delete a tab and can I delete a tab and keep it as an apptab

    What to do if you sell or give away iPad.
    http://support.apple.com/kb/HT5661

  • Form tab order changes when data is emailed as .xml

    .xml data is in a different tab order on the pdf. form   Why is the data order changing, when user uses the submit by email button?

    Hello Paul,
    I tried tried and tried ..But I found no solutions for it . Could you please help me a bit ??
    Thanks.
    Bibhu.

  • Tab pages not changed when selecting from TAB LIST

    Hi All,
    I have a form which has 15 tabs, 1st 10 Tabs are dynamic (enabled at new form instance, depending on configuration) and 11 to 15 are Static tabs visible for all.
    My problem is when i am clicking on tabs iam able to switch tabs, but when I select tab from Tab List I am not going to the selected TAB.
    Ex: when I am in TAB 1 and Select TAB15 from Tab list My form Still Stays in TAB1 and not moving to TAB 15
    Please provide me a Solution.
    My code in WHEN TAB PAGE CHANGED is
    DECLARE
    l_curr_rec NUMBER;
         BEGIN
              l_curr_rec := :SYSTEM.CURSOR_RECORD;
              --Get the Top Default Tab Page for the Form
              SHOW_VIEW('HDR_CANVAS_FIXED');
              :global.headers:=GET_CANVAS_PROPERTY('TAB_CANVAS', topmost_tab_page);
         IF(:GLOBAL.HEADERS='AS_REC_IMAGE')THEN      
    SHOW_VIEW('AS_REC_IMAGE');
    SET_VIEW_PROPERTY('AS_REC_IMAGE',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('AS_REC_IMAGE',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('AS_REC');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSIF(:GLOBAL.HEADERS='TRIM_REC_IMAGE')THEN      
    SHOW_VIEW('TRIM_REC_IMAGE');
    SET_VIEW_PROPERTY('TRIM_REC_IMAGE',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('TRIM_REC_IMAGE',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('TRIM_REC');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSIF(:GLOBAL.HEADERS='AS_SHIP_IMAGE')THEN      
    SHOW_VIEW('AS_SHIP_IMAGE');
    SET_VIEW_PROPERTY('AS_SHIP_IMAGE',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('AS_SHIP_IMAGE',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('AS_SHIP');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSIF(:GLOBAL.HEADERS='TRIM_SHIP_IMAGE')THEN      
    SHOW_VIEW('TRIM_SHIP_IMAGE');
    SET_VIEW_PROPERTY('TRIM_SHIP_IMAGE',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('TRIM_SHIP_IMAGE',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('TRIM_SHIP');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSIF(:GLOBAL.HEADERS='EXTRA')THEN      
                   ---Show the Export Canvas---------     
    SHOW_VIEW('EXTRA');
    SET_VIEW_PROPERTY('EXTRA',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('EXTRA',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('EXTRA');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSE -- DYNAMIC TABS
    --Hide all the other  static canvases
    IF (:GLOBAL.HEADERS='CT01')THEN
         GO_BLOCK('CT01');
    ELSIF (:GLOBAL.HEADERS='CT02')THEN
         GO_BLOCK('CT02');
    ELSIF (:GLOBAL.HEADERS='CT03')THEN
         GO_BLOCK('CT03');
    ELSIF (:GLOBAL.HEADERS='CT04')THEN
         GO_BLOCK('CT04');
    ELSIF (:GLOBAL.HEADERS='CT05')THEN
         GO_BLOCK('CT05');
    ELSIF (:GLOBAL.HEADERS='CT06')THEN
         GO_BLOCK('CT06');
    ELSIF (:GLOBAL.HEADERS='CT07')THEN
         GO_BLOCK('CT07');
    ELSIF (:GLOBAL.HEADERS='CT08')THEN
         GO_BLOCK('CT08');
    ELSIF (:GLOBAL.HEADERS='CT09')THEN
         GO_BLOCK('CT09');
    ELSE --ELSIF (:GLOBAL.HEADERS='CT10')THEN
         GO_BLOCK('CT10');
    END IF;
              END IF;
         END;
    Thanks,
    Durga Srinivas.
    Edited by: DurgaSrinivas_886836 on Dec 3, 2012 8:12 PM

    In your trigger, you are doing a SHOW_VIEW ('HDR_CANVAS_FIXED'); before you select the :GLOBAL.HEADERS information. I'm not sure what HDR_CANVAS_FIXED is, but I am wondering if that is what is messing you up. What happens if you either comment that out:
    DECLARE
      l_curr_rec     NUMBER;
    BEGIN
      l_curr_rec := :SYSTEM.CURSOR_RECORD;
      --Get the Top Default Tab Page for the Form
      --SHOW_VIEW ('HDR_CANVAS_FIXED'); /* <-------------------------------------------------------Comment it out */
      :global.headers := GET_CANVAS_PROPERTY ('TAB_CANVAS', topmost_tab_page);
      IF (:GLOBAL.HEADERS = 'AS_REC_IMAGE') THEN
        SHOW_VIEW ('AS_REC_IMAGE');
        .or if it is necessary move it to after the :GLOBAL.HEADERS:
    DECLARE
      l_curr_rec     NUMBER;
    BEGIN
      l_curr_rec := :SYSTEM.CURSOR_RECORD;
      --Get the Top Default Tab Page for the Form
      :global.headers := GET_CANVAS_PROPERTY ('TAB_CANVAS', topmost_tab_page);
      SHOW_VIEW ('HDR_CANVAS_FIXED'); /* <------------------------------------ Swap it with :global.headers */
      IF (:GLOBAL.HEADERS = 'AS_REC_IMAGE') THEN
        SHOW_VIEW ('AS_REC_IMAGE');
        SET_VIEW_PROPERTY ('AS_REC_IMAGE', VISIBLE, PROPERTY_TRUE);
        SET_TAB_PAGE_PROPERTY ('AS_REC_IMAGE', ENABLED, PROPERTY_TRUE);
        GO_BLOCK ('AS_REC');
      --Hide the other canvases except the Pricing Canvas
      ELSIF (:GLOBAL.HEADERS = 'TRIM_REC_IMAGE') THEN
        SHOW_VIEW ('TRIM_REC_IMAGE');
        .

  • How do I prevent tab focus from changing when I scroll tabs with the mouse wheel? [SOLVED]

    Whenever I scroll my tabs with the mouse scroll wheel the tab focus changes from the page I'm currently on to the tab being scrolled to. I usually have a large list of tabs open and I depend on being able to scroll tabs without changing page focus to keep myself organized.
    Also, I'd like to disable tab scroll wrapping; Once I've scrolled my tabs to the end I'd like it to stop scrolling, not wrap around to the start of my tabs.
    Is there a way to disable these features and revert to the tab scrolling behaviour of a previous version of Firefox?

    This is not a standard feature and can be caused by an extension.
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]

  • When I use Tab Groups, can I have some tabs that are always open together with a group, and just switching the groups that are besides the "always showing" tabs?

    I like to have some tabs always open, like for example the facebook page, while others I need only occasionally, like Ebay / Work / Fun (which I could put into Tab Groups). So I was wondering if it is possible to have the following configuration:
    Always open Tabs (e.g. Facebook, Myspace) and then next to that ONE of the Tab Groups (e.g. Group Ebay Stuff and Group Work Stuff and Group Fun Stuff)
    or alternatively have TWO Tab Groups open at the same time, like Group A and Group B, and then switch to Group A and Group C, then Group A and Group D, then Group A and Gourp B again.

    Hmm, well you can right click a tab you want always open and click "Pin as App Tab". I personally don't have much experience with Tab Groups, I'm just learning how to use them.
    Hope this helps!

  • Tab position change at runtine of tab canvas

    Dear gurus,
    Is it possible to change tab position of tab canvas at runtine in 10g forms?
    George.

    Gerd: Thank you very much for your advice.
    I will explain my situation. I have a form : INV. This has got three tabs : Header, Detail and Expenses. Some users prefer to see Header as the first tab while others want to see Details and still others like to see Expenses.They have their logic - what is important to that particular user he wants to see as the first tab.
    These preferences can be set in a different table(by an admin user) and can be applied once when the form opens and not during the runtime.
    Since tab order change facility is not available in forms, I need to apply the logic in a different way - activate the tab that each user prefers to see as the form opens regardless of the tab order.
    Hope you understand my case.
    George.

  • Pressing alt+tab to change program or pressing tab to move to next entry cell in a web page is causing Firefox to open a new tab

    A new tab is being opened in Firefox (started only today) when I do any of the following
    1. pressing alt+tab when in Firefox
    2. pressing tab to change data entry cell in a web page
    3. pressing direction keys (any of up - down - left - right)

    Upgrade Firefox to Firefox 13 (released today) and then try to Reset Firefox. This will fix most problems with Firefox that people experience. [[Reset Firefox – easily fix most problems]]

  • View changes when deleting a doc or item

    I have several users who report that when deleting a document, the finder takes them back to a higher level directory. How can this be stopped or is there another workaround?

    Thanks but I've witnessed it myself, if they delete a document, they end up several directories higher and must navigate back down to that directory to do anything else. Not a show stopper but certainly an annoyance.

  • Tabset in page fragment , the url does not changes when we select tabs...

    Hi
    Thank you for reading my post.
    i noticed that when we use a tabSet in a page fragment , selecting tabs does not change the current URL ,
    is it a correct manner ? I think when we select a tab and it opens another page the url should change.

    HI,
    There is a relevant topic on EA discussion.
    Topic :TabSet in page fragment , selecting a tab open a page but does not change the current browset url
    https://feedbackprograms.sun.com/project/forum/thread.html?cap={3F4DA363-16D3-4D4C-920C-992ECB054B6D}&forid={CC6B8562-F896-4A44-ACB6-4684BDD05E19}&topid={361DBDF0-FFDE-4618-9FC6-86E4903A9565}
    Hope this helps.
    Please post messages related to Creator 2 EA at the feedbacks programs portal. The URL is:
    https://feedbackprograms.sun.com/login.html
    Thanks,
    RK.

  • Why is it that there I can't have more than 2 tab groups? When I try to open a new tab group than it replaces the tab in the old tab group. will

    Using the latest Firefox version of 9.0.1

    I'm having difficulty visualizing what is wrong but try some basic steps first:
    Launch Safari while holding a Shift key - this will start Safari with just your Home page
    If you can see Reset Safari from the Safari menu, try that.
    In addition to downloading and installing Safari again, try reapplying just the Snow Leopard Combo Update: http://support.apple.com/kb/DL1399 There is no need to uninstall Safari first.
    Lastly try deleting Safari's Preferences file: ~/Library/Preferences/com.apple.Safari.plist

  • Group changes when file is created in the GUI

    Hello All,
    Here is a outline of my situation. On a 10.5 or 10.6 client machine if I go to System Prefs, Accounts and click on the "+" and change to "group" and add a new group called "video" and set the GID to 264, it will create the new group.
    Then I create a new user, right click on the user and go to Advanced Options, change the UID to the number below, and change the GID to 264.
    Now if I launch the terminal and create a new file from the terminal, and then ls -la that file all is well(see below). Then I go back to the desktop and open Text Edit, create a new file and save it, the new file belongs to the wheel group. ???
    I found some info that said to get the umask to work proper I needed to create a file in /etc called launchd-user.conf and add the entry "umask 0007" to it. I did that, and now the permissions seem to work proper, just not the group.
    Am I missing a step here somewhere along the way? Any help or ideas would be great!
    Thanks
    John
    On command line (Terminal):
    Last login: Wed Oct 27 15:58:47 on ttys000
    3032973:~ jnichol2$ cd Desktop
    3032973:Desktop jnichol2$
    3032973:Desktop jnichol2$ id -a
    uid=986638623(jnichol2) gid=264(video) groups=264(video),102(com.apple.sharepoint.group.2),9001(testgroup),101(com.app le.sharepoint.group.1),20(staff)
    3032973:Desktop jnichol2$ touch . foo
    3032973:Desktop jnichol2$ ls -ld foo
    -rw-rw---- 1 jnichol2 video 0 Oct 27 16:01 foo
    Everything looks good here, but....
    Launch GUI tool, e.g. Textedit; save file “bar”
    3032973:Desktop jnichol2$ ls -la bar.rtf
    -rw-rw----@ 1 jnichol2 wheel 318 Oct 27 16:01 bar.rtf
    Notice, the permissions and group are not what we expect. I hope this helps understand the problem. Let me know if you need more info.

    Two things are going on here.
    When a new file or folder is created, the group specified is inherited from its parent folder. So if some folder "foo" has the group "video" specified, then all new files created in that folder will also get group "video". It seems like you know this already.
    The problem you are having with TextEdit is that manner in which it saves new files. TextEdit creates a temporary directory first, saves the file there, and then moves the file to its proper destination folder as a final step. This is why it isn't getting the "video" group setting applied to it - it gets the "wheel" group from the temporary folder that it's really being created in. Some other Apple apps behave this way too - Safari when saving a web page to disk, for example.
    I have filed a bug report to Apple about this a long time ago. The report I filed was listed as a "duplicate". I don't know when, if ever, this will be fixed.

  • "Camera roll" photo thumbnail--doesn't change when delete photo

    I took a, uh, revealing photo and, as normal, it showed up as the thumbnail photo for the "Camera roll" album in my iPhone.
    However, after I deleted the photo, I expected it to be replaced with another photo as the thumbnail for the "Camera roll" album.
    Unfortunately, it's not.
    Luckily, I caught it before anyone saw.
    I supposed I could take another dummy photo to replace it, but this should be fixed.

    I'm sorry, but the fact that you took a potentially embarrassing picture does not mean that anything needs to be fixed.
    Just take another pic and that thumbnail will be replaced.

Maybe you are looking for

  • Flash Builder 4 unloadStyleDeclarations

    Hi: I am working on an app that has 4 style sheets.  The style sheets are complied to .swf's.  I am doing an unloadStyleDeclartion on the style sheet in memory and then a loadStlyeDeclartion hooked into a changeHandler when selecting a style sheet fr

  • Blinking amber, not able to do a factory reset?

    My AE is blinking amber and have been trying to do a factory reset by unplugging and pushing in reset button and then plugging back in. Each time I try i keep getting a blinking light, i don't get the flashing light that means the system has done a r

  • HT201064 Fresh Mavericks install, iPhoto installed from DVD - won't update via the App Store

    Hi all I did a fresh install of Mavericks, then installed a few apps from the App store. I then remembered iPhoto etc. that I have from the original install discs (2012 MBP)...but whilst iPhoto says an update is available (9.5.1), and launches the Ap

  • Inner class problem

    Hi. I want 100 buttons to be displayed, 10 rows with 10 cols. To create all buttons I do a loop, and calls a function that creates and adds the buttons to the panel. Here is the code sample. <CODE> // Here I adds the buttons for (int i = 0; i < 10; i

  • 'Snap to' feature isn't accurate- CC

    I've been having issues witht the 'snap-to' functions in Illustrator and InDesign recently. When aligning shapes or text boxes etc to a grid I've set up, the snap points aren't lining up with the grid, they just seem to be picking arbitrary points ne