How to define the number of tab displayed in Tab page group

Hello,
I have an application with Tab Page group  with 8 tabs and the browser is displaying only 5 of thems. I have to scroll to display the remaining 3 although I have enough spaces on the screen to displayed all of them.
Do you know what parameter/setup I need to change to display all of them at once ?
Thanks for your help,
Manuel

The link is to the closest linkable point in the documentation to the description of the Number of Rows (Item) attribute.
It sounds like you have been trying to enter—unsuccessfully—an item name or substitution string into the Number of Rows attribute. The Number of Rows (Item) attribute is the one that actually allows you to do this. Click on the flashlight icon beside it to get a list of items from the application.

Similar Messages

  • How to set the number of records displayed at run time

    Is it possible to set the number of records displayed block property at run time? The built-in 'GET_BLOCK_PROPERTY' can retrieve the number of RECORDS_DISPLAYED. But I can't find SET_BLOCK_PROPERTY to set this property. Is there anyway I can set this property programmatically? Thanks for any suggestions!

    Bookmark Go to End
    goal: How to vary the number of records displayed in a block
    programmatically
    fact: Oracle Forms Developer
    fix:
    Block property 'Number of Records Displayed' can not be changed during runtime
    using SET_BLOCK_PROPERTY. However, it is still possible programmatically change
    the visual appearance of the form so that it creates effect of changing this
    property. To achieve such an effect follow these steps:
    1. in Forms Builder, in the multirecord block define the new set of items.
    The simplest way is to copy/paste the original item and rename created item.
    2. set properties of these new items so that they are the same as the properties
    of the original items. If these new items were copied from original items
    then properties are already the same. Modify following properties
    'Database item' on new items to value 'No'
    'Synchronize with item' to the value of the original item
    'Number of Items Displayed' to desired value.
    'Visible' to 'No'
    In other words, these new items are mirrors of original items.
    3. code event, which is meant to trigger the change in block appearance.
    This code should use SET_ITEM_PROPERTY built-in to set properties
    like 'VISIBLE', 'ENABLED', 'NAVIGABLE', 'UPDATE_ALLOWED' and others
    to desired value for items which are about to be displayed, then
    move cursor to one of these just displayed items with GO_ITEM built-in
    and then hide the previously displayed items.
    Example:
    Assume that the block is built on SCOTT.DEPT schema. Following will
    change the set of displayed items
    set_item_property('dept.mdeptno',visible,property_true);
    set_item_property('dept.mdname',visible,property_true);
    set_item_property('dept.mloc',visible,property_true);
    set_item_property('dept.mdeptno',enabled,property_true);
    set_item_property('dept.mdname',enabled,property_true);
    set_item_property('dept.mloc',enabled,property_true);
    set_item_property('dept.mdeptno',update_allowed,property_true);
    set_item_property('dept.mdname',update_allowed,property_true);
    set_item_property('dept.mloc',update_allowed,property_true);
    set_item_property('dept.mdeptno',navigable,property_true);
    set_item_property('dept.mdname',navigable,property_true);
    set_item_property('dept.mloc',navigable,property_true);
    go_item('dept.mdeptno');
    set_item_property('dept.deptno',visible,property_false);
    set_item_property('dept.dname',visible,property_false);
    set_item_property('dept.loc',visible,property_false);
    Regards,
    Monica

  • How to set the number of rows displayed in a classical report at runtime?

    Hi,
    Our customer has several standard client hardware configuration and would like to enable end users to choose their 'display profile' at login time. This 'display profile' would contain predefined values for these hardware configurations and supposed to set various paramters that should define the number of rows displayed in a classical report region.
    I tried to provide parameters on the report region but it refused to accept anything but numerical values. Is it possible to do this?
    Regards, Tamas

    The link is to the closest linkable point in the documentation to the description of the Number of Rows (Item) attribute.
    It sounds like you have been trying to enter—unsuccessfully—an item name or substitution string into the Number of Rows attribute. The Number of Rows (Item) attribute is the one that actually allows you to do this. Click on the flashlight icon beside it to get a list of items from the application.

  • How to change the number of mails displayed

    I have two accounts on my iTouch..I know how to change the number of mails displayed for the exchanged account (being the second-added email account)...But I don't know how to change it on my account email... I only want the recent like 20 messages to be displayed... But after I was reading through my email (meaning that pretty much all my emails were downloaded).. I couldn't decrease the number of emails displayed on my account email anymore....

    Settings>Mail, contacts, calendars>Mail>Show Recent Messages. The least amount that you can set it for is 50 messages.

  • How to get the Number of lines displayed in  table control in bdc

    Hi,
    when we write a  bdc for a standard transaction, if we encounter a table control, we fill the values for each record like field(01), and the second record field(02) .......and so on..
    if only 3 records are displayed in the screen and if we have 5 records to be filled in the table control, how to write the logic for that?
    how to track of how many lines are getting displayed in the table control .. again it depends on the screen resolution i think..
    useful answers will be rewarded
    shekhar

    Hi,
    Here is the solution code for this :-
    data for controlling paging on screen 0102 
    DATA: W_MAXLINES(2) TYPE N, 
    W_NEXT_LINE(3) TYPE N, 
    W_PAGE(1), "y = page forward, n otherwise 
    W_SCRLEN(2) TYPE I, 
    W_SCRLINE(2) TYPE I. 
    DATA: BEGIN OF W_HDR. 
    INCLUDE STRUCTURE D020S. 
    DATA: END OF W_HDR. 
    DATA: BEGIN OF W_FLD OCCURS 100. 
    INCLUDE STRUCTURE D021S. 
    DATA: END OF W_FLD. 
    DATA: BEGIN OF W_LOG OCCURS 20. 
    INCLUDE STRUCTURE D022S. 
    DATA: END OF W_LOG. 
    DATA: BEGIN OF W_MC OCCURS 20. 
    INCLUDE STRUCTURE D023S. 
    DATA: END OF W_MC. 
    DATA: BEGIN OF W_DYNPRONAME, 
    PROGRAM(8) VALUE 'SAPMM60X', 
    DYNPRO(4) VALUE '0102', 
    END OF W_DYNPRONAME. 
    FORM GET_MAX_LINES. 
    set w_maxlines to the number of var-loop occurrences on the screen so 
    that we know when to page forward on screen 0102 
    also initialise w_next_line to zero for GET_NEXT_LINE 
    this subroutine caters for all cases - including screens without loops 
    CLEAR: W_MAXLINES, 
    W_NEXT_LINE. 
    IMPORT DYNPRO W_HDR 
    W_FLD 
    W_LOG 
    W_MC 
    ID W_DYNPRONAME. 
    LOOP AT W_FLD WHERE LTYP EQ 'L'. 
    MOVE W_FLD-LINE TO W_SCRLINE. "first var-loop line 
    MOVE W_FLD-LBLK TO W_SCRLEN. "depth of loop block 
    EXIT. 
    ENDLOOP. 
    IF SY-SUBRC EQ 0 
    AND W_SCRLEN NE 0. 
    sy-srows = total no of lines on screen 
    w_scrline = actual first line of loop so that 
    w_scrline - 1 = number of heading lines (before loop) 
    4 = no of lines at top of screen - command line, pushbuttons, 2 ulines 
    3 = no of lines after loop - uline & Page count 
    w_scrlen = no of lines in loop block 
    w_maxlines = sy-srows - ( wscrline - 1 ) - 4 - 3 
    and then 1 less but not sure why! 
    W_MAXLINES = SY-SROWS - W_SCRLINE - 1 - 4 - 3. 
    W_MAXLINES = W_MAXLINES - 1.
    W_MAXLINES = W_MAXLINES DIV W_SCRLEN. 
    ELSE. 
    MOVE 99 TO W_MAXLINES. "this required if no screen loop 
    ENDIF. 
    ENDFORM. 
    FORM GET_NEXT_LINE. 
    set w_page if page forward is required 
    W_NEXT_LINE = W_NEXT_LINE + 1. 
    IF W_NEXT_LINE GT W_MAXLINES. 
    W_NEXT_LINE = 1. 
    W_PAGE = 'Y'. 
    ELSE. 
    W_PAGE = 'N'. 
    ENDIF. 
    ENDFORM. 
    Hope it helps.
    reward if helpful.
    Regards,
    Sipra

  • How to change the number of records displayed on personnel profile?

    Hi Experts!
    1.The thing which I would like to do is as a title.
    2.And There is a part it is considered that is a change part.
    However, the method of changing that is not known.
    I need your help also with the direction and right or wrong which the modification method of the number of display records understands.
    Best Regards!

    Hi jyothi.
    thank you for your reply!
    >Change the visible row count as 1 and check.
    I changed.
    but change was not shown in the display of the number of the line.
    when 「rendering style 」was changed, change was shown in the display of the number of th lines.
    but  we need 「row repeat」 style.
    regards.

  • How to change the number of items displayed on the screen based on user input

    I need to place a number of input clusters on the user's screen based on the number of input types he will have.  Is there an easy way to do this?  (Say I have 3 different electrodes, I want to be able to add information for each then take this information and add it to a database, this case adding three new record sets to the database.  If I only have one electrode though, I only want one cluster on the screen and only one recordset will be added to the database)
    Message Edited by Vitamin on 01-11-2007 12:36 PM

    Place your clusters in a 1D array and create a property node for the array. You can use the Number of Rows property to control how many elements are shown. Wire the array into a for loop to index it.
    To learn more about LabVIEW, I suggest you try searching this site and google for LabVIEW tutorials. Here, here, here, here and here are a few you can start with and here are some tutorial videos. You can also contact your local NI office and join one of their courses.
    In addition, I suggest you read the LabVIEW style guide and the LabVIEW user manual (Help>>Search the LabVIEW Bookshelf).
    Try to take over the world!

  • Has anyone figured out how to limit the number of emails displayed in the mail app?

    There used to be a setting in Mail, Calendar, Contacts that would let you set the number, starting with 50 emails.  I can't find this setting in iOS 7.

    I do not know why one cannot use an artboard
    in Illustrator it looks like this
    In Photoshop it looks like this
    As far as I can determine it has cropped the area properly as before, please explain what is missing?

  • Count the number of visitor, display on welcome page, limit only 1 for next

    Hi everyone:
    1.
    This is my first problem
    I m currently develop a web server, using tomcat, as a web container.
    i have use strut by refer to Jakarta Struts for Dummies.
    I have done a user registration, login verify from database MySQL.
    My project is about telerobot, which will allow only 1 user to access the robot-control page.
    My webpage now allow all the registered user to access to robot-control page. I wanted the page will stop all the user at welcome page, and display the client queuing, and will only allow the client access to control page when his/her turn. Accessing period is limited to 15 minutes, let say.
    client =>
    ==>welcome page(display n queue and go to next page only when his/her turn)
    ==>robot-control page
    please help ..please guide me
    i) display the n client queued
    ii.)allow only when his/her turn
    2. My another problem is about the image. The webpage (jsp) may display the image for several time(properly), and then it may unable to retrieve the image.
    Here is the code:
    <%@ include file="taglibs.jsp" %>
    <jsp:useBean id="now" class="java.util.Date" />
    <table width="100%">
         <tr valign="top" align="center">
         <td>     
    <img  src="images/logo.gif" name="jazz" width="533" height="98" border="0               
    <img  src="images/cd.gif" name="jazz" width="140" height="140" border="0">
    </td>
    </tr>
    </table>the logo.gif can't display after several time access to. A "X" marked on the left up corner instead of the logo.gif images. Please help ..
    It will be okay if i replace it with other pictures ( new edited ) , but the old problem come on the next day (blank image). Please guide...
    Thanks in advance !!

    use a threaded application that is independent from your web app that will update your database every 15 minutes.. once a user has logged, the login time will be save on your db, thus it will be the reference time for your threaded application.. also put a tag on your db if the user has logged, the session has expired and if the user is his/her turn.. that is some idea that i can give you..

  • Java editor - set the number of spaces displayed for tabs

    How do I tell Studio Creator to use tabs instead of spaces?
    I open Tools - Options - Editing - Java Editor and set
    Code Formatting Rule = Java Indentation Engine ...
    - Expand Tabs to Spaces = false
    - Number of Spaces per Indent = 4
    - Statement Continuation Indent = 4
    After reformatting the source every 8 spaces were replaced by 1 tab. The blocks look like (s = space, t = tab)
    ssss{
    t       {
    t       ssss{I want to have every 4 spaces replaced by 1 tab and displayed 4 characters per tab.

    How do I tell Studio Creator to use tabs instead of spaces?
    I open Tools - Options - Editing - Java Editor and set
    Code Formatting Rule = Java Indentation Engine ...
    - Expand Tabs to Spaces = false
    - Number of Spaces per Indent = 4
    - Statement Continuation Indent = 4
    After reformatting the source every 8 spaces were replaced by 1 tab. The blocks look like (s = space, t = tab)
    ssss{
    t       {
    t       ssss{I want to have every 4 spaces replaced by 1 tab and displayed 4 characters per tab.

  • How to increase the number of row displayed in the result set.

    Hi All,
    I have a seeded oracle page OA.jsp?page=/oracle/apps/pa/structure/webui/FPStructVersionPG from projects module.
    On the above page, when we click on the financial tab to see the tasks, it shows only 180 tasks out of 298. I dont find any link on the page which would give me the rest of the tasks, overall it shows only 180 tasks.
    I checked the VO query it picks up all the 298 records.
      SELECT   *
        FROM   (SELECT   element_number,
                         element_name,
                         object_type,
                         element_version_id,
                         proj_element_id,
                         project_id,
                         display_sequence,
                       ---  milestone_flag,
                       ---  critical_flag,
                         parent_element_id,
                         relationship_type,
                         relationship_subtype,
                         summary_element_flag,
                      ----   progress_status_code,
                      ---   progress_status_meaning,
                      ---   progress_comments,
                     ---    scheduled_start_date,
                      --   scheduled_finish_date,
                         task_manager_id,
                         task_manager,
                         parent_structure_version_id,
                         wbs_level,
                         wbs_number,
                         DECODE (object_type,
                                 'PA_STRUCTURES', 'StructureVersion',
                                 'NoIcon')
                            AS structure_icon,
                       --  DECODE (critical_flag, 'Y', 'Critical', 'NoIcon')  AS critical_icon,
                     --    DECODE (milestone_flag, 'Y', 'Milestone', 'NoIcon') AS milestone_icon,
                         DECODE (relationship_type, 'L', 'Link', 'NoIcon')
                            AS link_icon,
                         DECODE (object_type, 'PA_STRUCTURES', 'Y', 'N')
                            AS disable_select_flag,
                         elem_rec_ver_number,
                         elem_ver_rec_ver_number,
                       --  elem_ver_sch_rec_ver_number,
                         DECODE (object_type,
                                 'PA_STRUCTURES', 'NoEditTaskNumber',
                                 'EditTaskNumber')
                            AS display_task_number,
                         DECODE (object_type,
                                 'PA_STRUCTURES', 'NoEditTaskName',
                                 'EditTaskName')
                            AS display_task_name,
                         DECODE (summary_element_flag,
                                 'Y', 'NoEditSchStartDate',
                                 'EditSchStartDate')
                            AS display_start_date,
                         DECODE (summary_element_flag,
                                 'Y', 'NoEditSchFinishDate',
                                 'EditSchFinishDate')
                            AS display_finish_date,
                         DECODE (object_type,
                                 'PA_STRUCTURES', 'NoEditTaskManager',
                                 'EditTaskManager')
                            AS display_task_manager,
                         DECODE (object_type, 'PA_STRUCTURES', '0', wbs_number)
                            AS outline_number,
                         element_number AS formatted_task_number,
                         element_name AS formatted_task_name,
                       --  progress_comments AS formatted_progress_comments,
                       --  scheduled_start_date AS formatted_start_date,
                      ---   scheduled_finish_date AS formatted_finish_date,
                         task_manager AS formatted_task_manager,
                      ---   status_icon_active_ind,
                       --  percent_complete_id,
                       ---  status_icon_ind,
                         NULL AS task_manager_raw,
                         DECODE (
                            task_manager,
                            NULL,
                            DECODE (summary_element_flag,
                                    'Y', '<B>' || task_manager || '</B>',
                                    task_manager)
                            AS task_manager_raw_no_link,
                         status_code,
                         status_code_meaning,
                         priority_code,
                         priority_description,
                         organization_id,
                         organization_name,
                      --   include_in_proj_prog_rpt,
                         description,
                         OBJECT_RELATIONSHIP_ID,
                         OBJECT_REC_VER_NUMBER,
                      --   pev_schedule_id,
                         parent_element_version_id,
                         STRUCTURE_TYPE_CLASS_CODE,
                         link_task_flag,
                         DISPLAY_PARENT_VERSION_ID,
                         parent_ver_rec_ver_number,
                        -- actual_start_date,
                        -- actual_finish_date,
                       --  estimated_start_date,
                      --   estimated_finish_date,
                      --   completed_percentage,
                      ---   as_of_date,
                       ---  report_version_id,
                         baseline_start_date,
                         baseline_finish_date,
                         DECODE (object_type,
                                 'PA_STRUCTURES', 'NoLinkedTaskName',
                                 'LinkedTaskName')
                            AS Linked_Task_name,
                         pm_source_name,
                         pm_source_code,
                         pm_source_reference,
                         DECODE (NVL (pm_source_name, 'Y'),
                                 'Y', NULL,
                                 pm_source_reference)
                            AS display_pm_source_ref,
                         element_name || ' (' || element_number || ')'
                            AS task_name_number,
                       --  est_sch_start_var,
                       ---  est_sch_finish_var,
                        -- act_sch_start_var,
                       --  act_sch_finish_var,
                       ---  sch_bsl_start_var,
                      ---   sch_bsl_finish_var,
                         DECODE (object_type,
                                 'PA_STRUCTURES', 'NoLinkTaskNameNumber',
                                 'LinkTaskNameNumber')
                            AS linked_task_name_number,
                      --   critical_flag_meaning,
                      --   milestone_flag_meaning,
                         work_telephone,
                         service_type_meaning,
                         service_type_code,
                         work_type_name,
                         work_type_id,
                         chargeable_meaning,
                         chargeable_flag,
                         billable_meaning,
                         billable_flag,
                         receive_project_invoice_m,
                         receive_project_invoice_flag,
                         transaction_ctrl_start_date,
                         transaction_ctrl_finish_date,
                       --  prior_percent_complete,
                      --   progress_brief_overview,
                      ---   SCHEDULE_AS_OF_DATE,
                    ----     TRANSACTION_AS_OF_DATE,
                   ---      BASELINE_AS_OF_DATE,
                     ---    ESTIMATE_AS_OF_DATE,
                      --   ACTUAL_AS_OF_DATE,
                         ACTIVE_TASK_MEANING,
                         DAYS_TO_SCH_START,
                         DAYS_TO_SCH_FINISH,
                         FINANCIAL_TASK_FLAG,
                       ---  DAYS_TO_ESTIMATE_START,
                       --  DAYS_TO_ESTIMATE_FINISH,
                       --  DAYS_SINCE_ACT_START,
                        -- DAYS_SINCE_ACT_FINISH,
                        -- FINISHED_TASK_FLAG,
                        -- FINISHED_TASK_MEANING,
                         TASK_CREATION_DATE,
                         LOWEST_TASK_MEANING,
                         TASK_TYPE_ID,
                         TASK_TYPE,
                         TASK_STATUS_CODE,
                         TASK_STATUS_MEANING,
                       --  PHASE_CODE,
                        -- PHASE_CODE_MEANING,
                        -- PLANNED_EFFORT,
                       --  WEIGHTING_PERCENTAGE,
                        -- SCHEDULED_DURATION_DAYS,
                        -- BASELINE_DURATION_DAYS,
                        -- ESTIMATED_DURATION_DAYS,
                        -- ACTUAL_DURATION_DAYS,
                         ADDRESS_ID,
                         ADDRESS1,
                         ADDRESS2,
                         ADDRESS3,
                         ADDRESS4,
                       --  WQ_ITEM_CODE,
                       --  WQ_ITEM_MEANING,
                        -- WQ_UOM_CODE,
                        -- WQ_UOM_MEANING,
                        -- WQ_PLANNED_QUANTITY,
                        -- ACTUAL_WQ_ENTRY_CODE,
                        -- ACTUAL_WQ_ENTRY_MEANING,
                        -- PROG_ENTRY_ENABLE_FLAG,
                        -- PERCENT_COMP_ENABLE_FLAG,
                        -- REMAIN_EFFORT_ENABLE_FLAG,
                        -- TASK_PROGRESS_ENTRY_PAGE_ID,
                        -- PAGE_NAME,
                        -- BASE_PERCENT_COMP_DERIV_CODE,
                        -- BASE_PERCENT_COMP_DERIV_M,
                        -- WQ_ENABLE_FLAG,
                         --PROG_ENTRY_REQ_FLAG,
                            address1
                         || ''
                         || address2
                         || ''
                         || address3
                         || ''
                         || DECODE (address4, ' , , ', '', address4)
                            work_site_full_address,
                         STRUCT_PUBLISHED_FLAG,
                         --ACTUAL_WORK_QUANTITY,
                        -- ESTIMATED_REMAINING_EFFORT,
                        -- VERSIONING_ENABLED_FLAG,
                         ---PHASE_VERSION_ID,
                         project_name,
                         project_number,
                         TASK_UNPUB_VER_STATUS_CODE,
                         DECODE (summary_element_flag, 'Y', 1, 0) AS leaf_task_flag,
                         0 AS PROJ_LEVEL_DISABLE_FLAG,
                         child_element_flag,
                         OPEN_ISSUES,
                         OPEN_CHANGE_DOCUMENTS,
                        -- phase_name,
                        -- days_until_scheduled_finish,
                         DECODE (TASK_UNPUB_VER_STATUS_CODE, 'TO_BE_DELETED', 1, 0)
                            AS to_be_deleted_image,
                         'WorkInfo' AS task_manager_called_page,
                         '-1' AS task_manager_resource_id,
                         OPEN_CHANGE_REQUESTS,
                         OPEN_CHANGE_ORDERS,
                         0 AS structure_type_flag,
                         DECODE (
                            PA_PROJ_ELEMENTS_UTILS.IS_LOWEST_LEVEL_FIN_TASK (
                               project_id,
                               element_version_id,
                               'N'
                            'N',
                            'Y',
                            'N'
                            AS FinChildElementFlag,
                         DECODE (
                            PA_PROJ_ELEMENTS_UTILS.CHECK_IS_FINANCIAL_TASK (
                               proj_element_id
                            'N',
                            1,
                            0
                            txn_dates_flag
                  FROM   pa_fin_structures_tasks_v) QRSLT
    ORDER BY   display_sequencePlease suggest how to get this done, this is oracle seeded module.
    Ashish

    Hi Ashish,
    Please check with vo.getRowCount();how many results are being fetched by vo.else substitute the vo to get vo,setMaxfetchSize().I'm not sure.Please check with this.I will be very glad if you let me know.
    Best Regards
    Krishna Priya Bandyopadhyay

  • Previously, I could have many links in a tab, but suddenly each tab only remembers 11 links. How can increase the number of links in a tab?

    Running Firefox 33.0 on Windows XP. Problem suddenly appeared last week. I made no configuration changes..

    Do you mean with restoring tabs from the previous session via "Show my windows and tabs from last time"?
    You can set that via the <b>browser.sessionstore.max_serialize_back</b> pref on the <b>about:config</b> page.
    The default is 10 and a value of -1 will disable this maximum and allows to keep all back history entries.
    See the description of this pref in this file (open via the location bar):
    * resource:///defaults/pref/firefox.js
    You can open the <b>about:config</b> page via the location/address bar.
    You can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config

  • The number of rows displayed in a JTable

    Hi,
    Can anyone tell me how I choose the number of rows displayed in a JTable? My table displays 25 rows, and thats a bit too many.
    Thanks.

    You dont need to do much.. I think you just have to initialze the table with ..
    JTablt t = new JTable(rows,cols);
    and make sure to make the 'rows' parameter to whatever u want. :-)
    Cheers

  • How to increase the number of rows to be displayed in BEx Web Analyzer

    hi,
    I am viewing reports using BEx Web analyzer option. It is displaying only 24 rows  of data at a time. How to increase the number of rows? do i need to any kind of settings?
    pls reply.

    Hi,
    I think the standard template in 2004s is named 0ANALYSIS_PATTERN. You can find it in Web Application Designer, open, and search for the technical name. If you want to change the number of rows or columns, you can find this setting near the bottom of the XHTML view of the template:
    <bi:BLOCK_COLUMNS_SIZE value="4" />
    <bi:BLOCK_ROWS_SIZE value="17" />
    Then just save, and ignore the error messages.
    Message was edited by:
            vind Reinsberg

  • How can I increase the number of Tags displayed in Drop down list?

    When I go to Bookmarks/Tags, there are only 10 tags displayed. I have created at least 15 tags.
    Is there a way to increase the number of Tags displayed in the Drop down list?
    Thanks

    Do you mean "Recent Tags" which has an icon a blue-colored folder with a primitive looking magnifying glass over the folder?
    That folder does have a limit of 10 results. If you want to create an "All Tags" item on the Boomarks Menu, you can do that by creating your own "smart folder." The process I use is a little involved, so bear with me (also, see the screen shots).
    The query used by Recent Tags is:
    place:type=6&sort=14'''&maxResults=10'''
    So for All Tags we will drop the maximum results limit:
    place:type=6&sort=14
    ''If you prefer your tags in alphabetical order instead of having the most recently used at the top, use this instead:''
    place:type=6&sort=1
    Go ahead and select the line you want and right-click > copy it.
    Next, click the bookmarks drop-down button, expand the Bookmarks Toolbar, right-click any existing item, and choose New Bookmark.
    In Location, paste the query, and in name, type All Tags (or your preferred description). When you click Add Bookmark, Firefox will add it, but it doesn't show the blue search folder icon. Drag the bookmark to the menu, and it will turn into a functioning search folder.
    Success?

Maybe you are looking for

  • Standard Report on rebates and discounts in Sales??

    Hi all, Is there any standard Datasource that gives me Invoice details along with different pricing Condition types say expecially Rebates and discounts.Or is there any standard query which displays details of rebates and discounts provided on an inv

  • Recommendations requested

    I want a new Home Theater that includes a Blu-Ray DVD player (that can play regular DVDs) + an iPod dock + AM/FM tuner.  And I want to connect it to my HD (1080) TV.

  • Is Airport Express compatible with ADSL2 modem?

    I already have an ADSL2 Modem (with both ethernet and usb cables) which was provided by the ISP. I am looking out for a router since my current Linksys router is giving problems. I am thinking of purchasing the Airport Express since it gives me the o

  • How can i find out who is using my email in iMessage

    How can i find out what devices on my apple id are using my email for imessage?

  • Solution Manager: System Administration

    Hello all, in Solution Manager -> dswp -> Operations Setup -> System Administration I've successfully created and monitored some servers; the problem is that I've accessed a server and in Session Components hit 'Complete'; since then, I can't remotly