How to change drop down menu size

Hello,
I have a drop down menu, by default, i can only see one value from the drop down list, i want to see all of them(4 values). Where to put size =4?
I am using APEX 4.
Thanks for your help.
Jen

Jen Hu wrote:
Hello,
I have a drop down menu, by default, i can only see one value from the drop down list, i want to see all of them(4 values). Where to put size =4?
I am using APEX 4.
Thanks for your help.
JenDon't open duplicate threads! try the solution posted in the other thread {message:id=10907927} and close the threads.

Similar Messages

  • [bump]How to change drop down menu size

    Hello,
    I have a drop down menu and i want to change the size= 4. Where to put it?
    Thanks for your help.
    Jen
    Edited by: Jen Hu on Apr 8, 2013 12:38 PM

    Jen Hu,
    You can get an old thread to come to the top by
    1) replying to the last response or
    2) editing one of your previous replies.
    In this case, more information was requested from you.
    If you have an "old" thread that's not getting attention, and you've supplied all the inforamtion that you can, then a typical approach I've seen is to edit your last reply with something like -
    * Bump * Looking for additional responses. Thanks.
    Howard

  • How to create Drop down menu in the selection screen

    Hi all,
    How to create Drop down menu in the selection screen.
    Fast answer will be highly rewarded
    Regards
    Bikas

    hi ,
    TYPE-POOLS : vrm.
    TABLES:vbak,vbap.
    DATA : v(80) TYPE c.
    DATA: wa_vbak TYPE vbak,
          it_vbak TYPE vbak OCCURS 0 WITH HEADER LINE,
          wa_vbap TYPE vbap,
          it_vbap TYPE vbap OCCURS 0 WITH HEADER LINE.
      DATA: l_name TYPE vrm_id,
            li_list TYPE vrm_values ,
            v_count  TYPE i,
            l_value LIKE LINE OF li_list.
    PARAMETERS: p_test(20) AS LISTBOX VISIBLE LENGTH 60 MODIF ID DAT.
    INITIALIZATION.
    AT SELECTION-SCREEN OUTPUT.
      PERFORM get_data.
      LOOP AT it_vbak.
        l_value-key =  it_vbak-vbeln .
        l_value-text = it_vbak-vbeln .
        APPEND l_value TO li_list.
      ENDLOOP.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = 'P_TEST'
          values          = li_list
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
    AT SELECTION-SCREEN ON P_TEST.
      clear : li_list , li_list[].
      SELECT vbeln
             matnr
             meins
             FROM vbap
             INTO CORRESPONDING FIELDS OF TABLE it_vbap
             WHERE vbeln = p_test.
    START-OF-SELECTION.
      SELECT vbeln
             matnr
             meins
             FROM vbap
             INTO CORRESPONDING FIELDS OF TABLE it_vbap
             WHERE vbeln = p_test.
      LOOP AT it_vbap.
        WRITE :/ it_vbap-vbeln, it_vbap-matnr,it_vbap-meins.
      ENDLOOP.
    *&      Form  get_Data
          text
    -->  p1        text
    <--  p2        text
    FORM get_data .
      SELECT  vbeln
              FROM vbak
              INTO  CORRESPONDING FIELDS OF TABLE it_vbak.
    ENDFORM.                    " get_Data
    regards,
    venkat.

  • How To Create Drop Down Menu With Tab

    hi
    How To create Drop Down Menu with tab in Header of application like website Horizontal Dropdown Menu In html.
    Thanks
    Manoj
    Edited by: Manoj Kaushik on Dec 30, 2009 4:16 AM

    Try the Apex forum {forum:id=137} someone there may have an answer.
    Which version, that could be important, XE out-of-the-box has apex 2.1 if it hasn't been upgraded to 3.x

  • How to use drop down menu in JTables

    Hi, i'm trying to add an drop down menu to my jtable so that people can select a set number of texts from an enum type. How can this be accomplished?
    My current Code: /**
    * Bill Huang
    * Started: Nov 07, 2007
    * Dossier
    package packageSolo;
    import javax.swing.*;
    import java.awt.*;
    public class SpreadSheetGUI extends JPanel{
         private void debug(int x){
              //System.out.println(x);
         protected static Object[][] data;
         protected static int classroomAmount = 0;
         protected static JTable jtable;
         protected static String[] columnNames = { "Class Room Number", "Period One", "Period Two", "Period Three", "Period Four" };
         public SpreadSheetGUI(){
              super(new GridLayout(1,0));
              String input;
              int flag2 = 0;
              int flag4 = 0;
              int flag5 = 0;
              int flag8 = 0;
              input = JOptionPane
                        .showInputDialog("How many classrooms are there?");
               * see if the user wantes to quit at this point
              if (input == null) {
                   debug(4);
                   int exitint = 0;
                   exitint = JOptionPane.showConfirmDialog(null,
                             "Do you want to exit?", "Exit?",
                             JOptionPane.OK_CANCEL_OPTION);
                   if (exitint == 0) {
                        try {
                             System.exit(1);
                        } catch (SecurityException eb) {
                             System.out.println("exit");
              while (flag4 == 0) {
                    * this while loop with flag2 is for checking if the thing is of int
                    * class
                   while (flag2 == 0) {
                         * try to get a integer, check for a bad input class
                        try {
                              * parse, and if success set flag2 to 1 and break out this
                              * while loop
                             classroomAmount = Integer.parseInt(input);
                             flag2 = 1;
                             debug(2);
                        } catch (NumberFormatException ec) {
                             debug(3);
                              * ops user input was not a integer class
                             JOptionPane
                                       .showMessageDialog(null,
                                                 "Enter a positive integer only",
                                                 "Number Format is Wrong",
                                                 JOptionPane.ERROR_MESSAGE);
                             input = JOptionPane
                                       .showInputDialog("How many months are there?");
                              * see if the user wantes to quit at this point
                             if (input == null) {
                                  debug(4);
                                  int exitint = 0;
                                  exitint = JOptionPane.showConfirmDialog(null,
                                            "Do you want to exit?", "Exit?",
                                            JOptionPane.OK_CANCEL_OPTION);
                                  if (exitint == 0) {
                                       try {
                                            System.exit(1);
                                       } catch (SecurityException eb) {
                                            System.out.println("exit");
                    * this while loop sees if the integer is smaller than 0 so the
                    * array cannot be a real one
                   while (flag5 == 0) {
                        // numamountint = Integer.parseInt(numamount);
                        if (classroomAmount < 0 || classroomAmount > 12) {
                             debug(5);
                             JOptionPane
                                       .showMessageDialog(null,
                                                 "Enter a positive integer that is smaller than 12",
                                                 "Number Format/Size is Wrong",
                                                 JOptionPane.ERROR_MESSAGE);
                             input = JOptionPane
                                       .showInputDialog("How many months are there?");
                             if (input == null) {
                                  int exitint = 0;
                                  exitint = JOptionPane.showConfirmDialog(null,
                                            "Do you want to exit?", "Exit?",
                                            JOptionPane.OK_CANCEL_OPTION);
                                  if (exitint == 0) {
                                       try {
                                            System.exit(1);
                                       } catch (SecurityException eb) {
                                            System.out.println("exit");
                              * this while loop check for number format again
                             while (flag8 == 0) {
                                  try {
                                       debug(6);
                                       classroomAmount = Integer.parseInt(input);
                                       flag8 = 1;
                                  } catch (NumberFormatException ec) {
                                       debug(7);
                                       JOptionPane.showMessageDialog(null,
                                                 "Enter a positive integer only",
                                                 "Number Format is Wrong",
                                                 JOptionPane.ERROR_MESSAGE);
                                       input = JOptionPane
                                                 .showInputDialog("How many months are there?");
                                       if (input == null) {
                                            int exitint = 0;
                                            exitint = JOptionPane.showConfirmDialog(null,
                                                      "Do you want to exit?", "Exit?",
                                                      JOptionPane.OK_CANCEL_OPTION);
                                            if (exitint == 0) {
                                                 try {
                                                      System.exit(1);
                                                 } catch (SecurityException eb) {
                                                      System.out.println("exit");
                        } else {
                              * here the input is greater than 0 so it sets flag5 and 4
                              * then break out of the while loops
                             debug(8);
                             flag5 = 1;
                             flag4 = 1;
              data = new String[classroomAmount][5];
              jtable = new JTable(data, columnNames);
              jtable.setPreferredScrollableViewportSize(new Dimension(800, 600));
              JScrollPane scrollPane = new JScrollPane(jtable);
              this.add(scrollPane);
              this.show();
    }

            Object[] possibilities = {"1", "2", "3"};
            input = (String) JOptionPane.showInputDialog(null,
                    "Please choose the number of classrooms:",
                    "How many classrooms are there?",
                    JOptionPane.PLAIN_MESSAGE,
                    null, possibilities, "1");Edited by: Andre_Uhres on Nov 8, 2007 8:22 AM
    I thought you need a combo for JTable row set. Seems I misunderstood.
    See next posting.

  • How to have drop down menu in which we cant continue until selection is made

    Hi All,
    I have a case in which I have 4 drop down menu, and a continue button, I want to make sure that a user cant continue until selection is been made on all the four or atleast from some of the drop down menu. how can I do that.
    Solved!
    Go to Solution.
    Attachments:
    selection.vi ‏20 KB

    I believe what Norbert was suggesting is something like this:
    With this code the "Continue button will be disabled and greyed untill a value change event has been registered on each of the four I32 controls.  Note also that its always OK to Cancel (and the windows X is active so you won't anger your users)  The caller should decide what to do if Canceled? is TRUE.
    Modify as desired!  the Attachment is saved back to 2012
    You can safely delete the case structure.... 
    Its a hold over from my VIT 
    Jeff
    Attachments:
    Simple UI (Events) 1.vi.vi ‏31 KB

  • How to export drop down menu to DW??

    Hi all,
    I am have just created a drop down menu in Fireworks and
    wanted to export it to my website to update the menu.
    Now, I have saved the button files in my rootfolder. When I
    go there from DW/ Insert Image objects/ rollover button (its a
    rollover), I see the following files that I created from Fireworks:
    registration-nor.gif
    then I have a whole lot of
    registration-over_f6.gif
    (corresponding to the amount of frames I have in my roll over
    button)
    I also got
    mm_css_menu.js
    and
    registration-over.htm
    and
    registration-over.css
    Now, the above is a whole bunch of different files, and I
    cant seem to figure out how to put them in the right place or
    swhich file to choose for where, in order to get my drop down menu
    to work>
    Please help me, and tips would be highly appreciated!
    Cheers!
    Text
    Text
    Text

    You really want help? Don't use these menus. They are pretty
    poorly
    implemented and will be a bear to maintain. There are much
    better ways -
    some free and some commercial:
    Check the uberlink and MacFly tutorials at PVII
    http://www.projectseven.com/)
    and the Navbar tutorial/articles at Thierry's place
    http://tjkdesign.com/articles/dropdown/)
    Or this one (more recent article):
    http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp)
    Or to get it done fast, go here -
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Horst1881" <[email protected]> wrote in
    message
    news:ek1242$s6p$[email protected]..
    > Hi all,
    > I am have just created a drop down menu in Fireworks and
    wanted to export
    > it
    > to my website to update the menu.
    >
    > Now, I have saved the button files in my rootfolder.
    When I go there from
    > DW/
    > Insert Image objects/ rollover button (its a rollover),
    I see the
    > following
    > files that I created from Fireworks:
    >
    > registration-nor.gif
    > then I have a whole lot of
    > registration-over_f6.gif
    > (corresponding to the amount of frames I have in my roll
    over button)
    >
    > I also got
    > mm_css_menu.js
    >
    > and
    > registration-over.htm
    >
    > and
    > registration-over.css
    >
    > Now, the above is a whole bunch of different files, and
    I cant seem to
    > figure
    > out how to put them in the right place or swhich file to
    choose for where,
    > in
    > order to get my drop down menu to work>
    >
    > Please help me, and tips would be highly appreciated!
    >
    > Cheers!
    >
    >
    >
    Text
    Text
    Text
    >

  • How to automate Drop Down menu in OpenScript

    Hello Team,
    Can someone help me in automating a drop down menu? The following is what I'm trying to achieve
    For iteration 1 the first value from the drop down menu should be selected, continue rest of the task as per the initial record
    for iteration 2 the second value from the drop down menu should be selected.. and so on till all the values in the drop down are selected.
    I guess we should use for loop? I tried most of the option as per the user guide but unfortunately I wasn't able to crack it :( can some one tell me what to do from the Tree view of the openscript? Alex (guru) can you please throw some light on this :)
    N.B: I was able to make a field data driven!
    Thanks

    Hello,
    Thanks for your reply, please find the drop down box record script. From the below you can see first I selected Accounting from the drop down & then later i selected Administration..similarly if i want to select all the values from the drop down what do i need to do? Do i add a for loop? if yes where do i add them from the Tree view & how. I somehow can't understand the user guide. Or maybe Im not thinking right! Kindly help. I have figured out how to run data driven test from an input file, however in this case I can't possibly add all the values from the drop down in an input file also that approach isn't healthy!
                   web
                             .selectBox(
                                       5,
                                       "/web:window[@index='0' or @title='SEEK - Australia&apos;s no. 1 jobs, employment, career and recruitment site - Microsoft Internet Explorer']/web:document[@index='0']/web:form[@id='layout' or @name='layout' or @index='0']/web:select[(@id='catindustry' or @name='catindustry' or @index='0') and multiple mod 'False']")
                             .selectOptionByText("Accounting");
                             .selectBox(
                                       16,
                                       "/web:window[@index='0' or @title='SEEK - Australia&apos;s no. 1 jobs, employment, career and recruitment site - Microsoft Internet Explorer']/web:document[@index='0']/web:form[@id='layout' or @name='layout' or @index='0']/web:select[(@id='catindustry' or @name='catindustry' or @index='0') and multiple mod 'False']")
                             .selectOptionByText("Administration");

  • How to configure drop down menu in custom list

    Hi,
    I want to create custom list with 3 options. Active, Proposal and Completed. How can I create drop down menu like this (look at picture). 

    Hi,
    According to your post, my understanding is that you wanted to configure drop down menu in custom list.
    I suggest to modify the view to group by Preposition Status.
    You can follow the steps as below:
    Create list, add choice column named Preposition Status.
    Add items.
    Modify the view as below:
    Then the result is as below:
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Help - Changing drop-down Menu Format

    Hi,
    I want to know how I can get a new menu or what software I
    can use to creat a new menu. Captivate 2/3 only allow you to creat
    a drop down menu to break up your course into chapters. This is
    annoying, since its only up top and not visible. I want to create
    my course similar to breeze where all the chapters of the course
    are on a visible left hand panel at all times. This makes it easy
    for my customers to skip sections and navigate. Please let me know
    how I can convert my swf adope captivate files into this format or
    what software will allow me to do this. This is urgent, since I
    have to come up with a solution in the next few days before launch.
    Thank you kindly,
    Mosh

    Welcome to our community, Mosh
    One way to accomplish this is to click Project > Resize
    Project... and make the project wider. During the process you will
    have the opportunity to choose how to handle the existing part of
    the project. You will want to place it on the right. This should
    create a new area on the left side. You could then insert button
    objects in this area to allow navigation of the project.
    Cheers... Rick

  • How to put drop down menu over iframe?

    I created drop down menu in A-Master with height 100 pixels.
    On a page which uses A-Master template I've put youtube video, example:
    <iframe width="1000" height="500" src="//www.youtube.com/embed/8eDuupJ9Uus" frameborder="0" allowfullscreen></iframe>
    and when I export HTML, Iframe video is over dropdown menu so I can't see this menu, iframe is on top of it, how can I place dropdown menu on top of this iframe?
    Tried to search whole internet with no good results, I have only found other people has same problem.
    ...and I have tried this "wmode="transparent" too:
    <iframe width="560" height="349"src="http://www.youtube.com/embed/rLVCjnEGrqQ?wmode=transparent"frameborder="0" allowfullscreen wmode="transparent"></iframe>
    was no good

    Your menu layer should be on top of everything!
    Regards,
    Frank

  • How to get drop down menu

    hai plz help me
    how to dovelop a drop down menu for a field in selection screen

    Hi
    Hope it will help you.
    Pls reward if help.
    REPORT zwa_test2.
    TYPE-POOLS : vrm.
    tables: bkpf.
    DATA : values TYPE vrm_values.
    DATA : wa LIKE LINE OF values.
    PARAMETERS : list_box(10) TYPE c AS LISTBOX VISIBLE LENGTH 10.
    PARAMETERS: dd type bkpf-BSTAT user-command abc.
    select-options: a for bkpf-bukrs MODIF ID buk.
    select-options: b for bkpf-belnr MODIF ID SEL.
    at selection-screen output.
      If list_box = 2.
        loop at screen.
          if screen-group1 = 'SEL'.
            screen-input = 0.
            modify screen.
          endif.
         endloop.
       endif.
    INITIALIZATION.
      wa-key = '1'.
      wa-text = 'Orange'.
      APPEND wa TO values.
      wa-key = '2'.
      wa-text = 'Red'.
      APPEND wa TO values.
      wa-key = '3'.
      wa-text = 'Blue'.
      APPEND wa TO values.
      wa-key = '4'.
      wa-text = 'Gray'.
      APPEND wa TO values.
      CALL FUNCTION 'VRM_SET_VALUES'
           EXPORTING
                id              = 'LIST_BOX'
                values          = values
           EXCEPTIONS
                id_illegal_name = 1
                OTHERS          = 2.
    Ref Program:  DEMO_DROPDOWN_LIST_BOX
    Link: Need a drop down for a selection screen

  • How to make drop down menu

    Hi,
    Iam just wondering if somebody can tell me how to make drop down menus....or direct me to a URL so that i can get some sample code for how to make drop down menus like this:
    + drop down
    abc
    + first
    + second
    - third
       third-des
       third-des2
    i would really appreciate it.
    thanks all.
    -sangita

    Hi,
    something is working .....thanks.
    I have created a java class file as shown below and i did able to run it.........:)
    here is my code:
    package AppMirror;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MenuLookDemo {
        public JMenuBar createMenuBar() {
            JMenuBar menuBar;
            JMenu menu;
            JMenuItem menuItem;
            //Create the menu bar.
            menuBar = new JMenuBar();
            //Build the first menu.
            menu = new JMenu("Menu Label");
            menuBar.add(menu);
            //a group of JMenuItems
            menuItem = new JMenuItem("Item Label");
            //menuItem.addActionListener(actionListener);
            menu.add(menuItem);
            return menuBar;
        public static void main(String[] args) {
            //Create and set up the window.
            JFrame frame = new JFrame("MenuLookDemo");
            //Create/set menu bar and content pane.
            MenuLookDemo demo = new MenuLookDemo();
            frame.setJMenuBar(demo.createMenuBar());
            //Display the window.
            frame.setSize(450, 260);
            frame.setVisible(true);
    but when i see the applet, it doesn't look the one i wanted to see......
    this shows the top menu bar ....but not the + drop-down.
    any ideas ???
    sorry, i don't know anything about swings, applets.....

  • How to create drop-down menu with transparency

    Hello,
    Is it relatively easy to create drop-down menu's with
    transparent drop downs? Any step by step help would be greatly
    appreciated.
    I thank you in advance,
    Jaz

    jasperjaz schrieb:
    > Looks like some cool stuff. However, nothing on drop
    downs
    >
    Take a look at "Creating Animated Buttons". The Tweening of
    the text to
    the right and changing the color perhaps could be replaced or
    appended
    by your drop-down-needs? The Drop-Down is another Animated
    Button!?
    Bye
    Klaus

  • How to create drop down menu in my report

    hi all
    i have a list of options which i have to display as a drop down menu
    pls guide me to do
    thanks in advance

    hi,
    u want like this?
    parameters: p_mode as listbox visible length 10.
    parameters: p_mode1 as listbox visible length 10.
    AT SELECTION-SCREEN OUTPUT.
      PERFORM fill_dropdown_list USING 'p_mode'(001).
      PERFORM fill_dropdown_list1 USING 'p_mode1'(007).
    FORM fill_dropdown_list USING value(f_parameter).
      TYPE-POOLS: vrm. " For parameter drop down lists
      DATA:  name  TYPE vrm_id,
               list  TYPE vrm_values,
               value LIKE LINE OF list.
      name = f_parameter.
      value-key = 'C'.
      value-text = 'Fist'.
      APPEND value TO list.
      value-key = 'F'.
      value-text = 'Second'.
      APPEND value TO list.
      value-key = 'H'.
      value-text = 'Third'.
      APPEND value TO list.
      value-key = 'D'.
      value-text = 'Forth'.
      APPEND value TO list.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id     = name
          values = list.
    ENDFORM.                       " fill_dropdown_list
    FORM fill_dropdown_list1 USING value(f_parameter).
      TYPE-POOLS: vrm. " For parameter drop down lists
      DATA:  name  TYPE vrm_id,
               list  TYPE vrm_values,
               value LIKE LINE OF list.
      name = f_parameter.
      value-key = 'C'.
      value-text = 'Fist'.
      APPEND value TO list.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id     = name
          values = list.
    ENDFORM.                       " fill_dropdown_list

Maybe you are looking for

  • No Data when doing multiple selection of sub-brand in the cube

    Hey everyone. I am having a very strange situation. No Data when doing multiple selection cube. The thing is that the situation is created only in the transition between the servers, who have a different Build but both of them are SQL 2008R2 servers.

  • Adobe Flash Player 11

    Why is Safari not compatible with the newest version of Adobe Flash Player 11? It's the same for other web browsers like Chrome and Firefox. Each browser provides updates for their browsers but neither are compatible for new version of flash player.

  • Callable Statement Exception

    Hi, I am very new to Java SQL Callable Statement. The following is the program that i wrote to execute a Stored Procedure stored in MS SQL Server 2000. In my program I am actually retrieving back the value that I've passed to the MS SQL Server. =====

  • Pr /po cancelation

    HI, 1. how to cancel & delete; purchase requisiton (CAse : PR is created through sales order -3 party sales) how to cancel & delete; purchase order 2. how to find purchase order by using purchase requisiton.

  • Problem with simple Web Service

    Hi, I'm new in WebLogic . I created some jee projects (usually simple) before, but only in glassfish or tomcat. I read simple netbeans tutorial http://netbeans.org/kb/docs/websvc/jax-ws.html , but when i run this project in WebLogic i had the error: