30EA3 - 2.1.* : Drop-down button missing in Data tab filter

Hi,
1.5 introduced the very useful drop-down list with remembered filters in the Data tab.
2.1 fixed some bugs in the area and made it easier to write new ones.
However, the actual button to open the list (on the far right of the field) is missing, so you're forced to write something before the list opens. Can this be bugged please?
Thanks,
K.

Hi K,
I have logged an enhancement
Bug 9201543 - FORUM: DATA FILTER HISTORY BUTTON
Regards,
Dermot.

Similar Messages

  • Animated drop down buttons not working in movie clip

    Hi,
    I am working on this site: (AS2)
    http://www.steamandclean.com/Index_w_1.html
    I have two types of drop down menu. One under Commercial and one under Technical
    The buttons are movie clips. The drop downs are also movie clips that start in frame 2 and are triggered on rollover.
    The child buttons are buttons living on the drop down movie clips. They are set to getURL
    As you see they are not willing to neither link to any url or will they run their move clip animation. One is a button and one is a movie clip.
    The left movie clip has a mask, but it makes no difference if I remove the mask . It also has a emboss filter and no difference is I take that away either.
    All of it is in one flash movie right now, but I will be splitting it up in a master navigation movie and individual swf's soon.
    Right now I have the main movie, then the button MC then the dropdown MC and in the drop down MC I have placed either a animated (button) MC or a button. So it nested in nested in.......
    In both cases I scripting the child buttons like this:
    on (rollOver) {
    gotoAndPlay(2);
    on (rollOut) {
    gotoAndPlay(6);
    on (release) {
    getURL("http://steamandclean.com");
    I have also tried to use
    _parent.getURL and _root.getURL in stead of just get URL, but it does not work.
    The drop down buttons seem to be buried. In the left side the whole drop down panel seems to act like a link?
    What am I doing wrong?
    Can you help?
    ggaarde

    Hi Ned
    Thank you for your reply again.
    I figured it out.
    Your reply prompted me to have my main button on rollover to go to a frame number on the main time line and then move the content of the drop down movie clip to that frame.
    The drop down panel now work and the child buttons animation now work as well. I just had to find a way to make the drop down panel disappear on rollout. Since I could not script the actual drop down panel I created three skinny invisible buttons and placed them on the right, left and button of the drop down panel. I scripted them to go back to frame 1 on both rollover and rollout. Done.
    See the result there:
    http://www.steamandclean.com/Index_w_1.html
    (Left side only)
    Thank you for your help.
    ggaarde

  • Drop Down button multi function

    Hi all,
    i need to implement a usual button with a drop down button , like back button on Internet explorer and a drop down button.
    i did it in the following way:
    1) i create normal button
    2) add it to my toolbar
    3) create a popupmenu
    4) add a few menuitem to the previous popupmenu
    5) create a button for a drop down
    6) create event "mouse prsessed" for a drop down button,
    whenever i pressed this button a pop up menu show up.
    it all works fine.
    i have only one problem.
    how can i group the two buttons to one.
    i mean for example:
    when i point on a back button on my Internet explorer both buttons are
    highlighted.
    Thanks

    Don't cross post:
    http://forum.java.sun.com/thread.jspa?threadID=5122040&messageID=9427488#9427488
    http://forum.java.sun.com/thread.jspa?threadID=5122039&messageID=9427487#9427487
    http://forum.java.sun.com/thread.jspa?threadID=5122038&tstart=0
    %

  • Drop down arrows missing in folder

    Hi everyone,
    I have drop down arrows missing from a folder on my imac on OS 10.7.4.
    The issue is the same as the one outlined in the following post:
    https://discussions.apple.com/thread/3963643?start=0&tstart=0
    The above post refers to the issue on a macbook pro whereas my issue is on an imac.
    In any case, there has been no solution to the problem so I wondered if anyone has any advice?
    Thanks in advance for any help.

    or

  • How can i link two drop down buttons added dynamically

    guys got a wired problem but plz help.
    i m using jbuilder to create m y website.
    in this i got 2 drop down buttons.
    when the 1st(p1) 1 is clicked then second 1(a1) shows value respective of the value clicked in 1st 1.
    i dynamically add similar drop dowm on click of a button.
    but when value in the new drop down is selected (p2) it shows changes in 1st drop down (a1) not in newly created drop down(a2)
    could u guys plz help me out.
    its really urgent

    this is the code i m using to create the drop down
    ->
    var i=0;
    var option=new Array();
    function insRow(){
    var d=document.getElementById("div");
    d.innerHTML+="<select id='D"+i+"' class='input' onChange='getSh(this.selectedIndex)'><option>Select Here</option>"+
    <%
    rs=st.executeQuery("select * from productTab");
    while(rs.next())
    %>
    "<option><%=rs.getString("productName")%></option>"+
    <%}%>
    "</select>"
    d.innerHTML+="<select name='DD"+i+"' id='DD"+i+"' class='input'><option>Select Here</option></select>"
    d.innerHTML+="<select name='DDD+i' id='DDD+i' class='input'><option>Select Here</option></select>"
    d.innerHTML+="<input type=text name='T+i' id='T+i' class='input-time'><br>"
    option +=["DD"+i];
    option +=["D"+i];
    i++;
    function getSh(selectedcitygroup)
    document.getElementById("DD+i").options.length=1
    if(selectedcitygroup>0){
    for(i=0;i<cities[selectedcitygroup].length; i++)
    document.getElementById("DD+i").options[document.getElementById("DD+i").options.length]=new Option(cities[selectedcitygroup].split("|")[0], cities[selectedcitygroup][i].split("|")[1])

  • Drop down buttons from a JToolBar

    I've been looking at various postings on how to get drop down options from a JToolBar. What I have seen suggests using JPopupMenu.
    However for my requirements I simply want the drop down buttons to appear in a gridlayout rather than as a drop down menu. Just the icons with no labels.
    Is it possible to change the layout manager up JPopupMenu or should I be trying some other component?
    The code I am trying looks something like that below where I demonstrate a toolbar dropdown color picker. The change of the layout manager seems to have no effect.
    final JButton standardColorButton = _toolBar.add(_actionStandardColor);
    final JButton changeColorButton = new JButton(_actionChangeStandardColor);
    _toolBar.add(changeColorButton);
    changeColorButton.addMouseListener(new MouseAdapter() {
        public void mouseClicked(MouseEvent e) {
            int height = standardColorButton.getPreferredSize().height;
            JPopupMenu popup = new JPopupMenu("test");
            popup.add(_actionRed);
            popup.add(_actionGreen);
            popup.add(_actionBlue);
            popup.add(_actionBlack);
            popup.show(associationButton, 0, height);
            popup.setLayout(new GridLayout(0,2));

    Hi Vijay,
    Is this correct?
       var oInput = new sap.ui.commons.DropdownBox("ddlb_matnr");
           var oItemTemplate = new sap.ui.core.ListItem();
           oItemTemplate.bindProperty("key", "Matnr");
           oItemTemplate.bindProperty("text", "Description);     
           oInput.bindItems("/sap/opu/odata/sap/Z_MATNR_F4_SRV/materialSet", oItemTemplate, null, "'');
    This should work ?
    I tried this.. it is not fetching...         
    Let me know?

  • ComboBox drop down button - visibility

    Is there anyway that I can make the drop-down button on a combobox visible and not visible?
    Cheers for any help,
    Tom.

    try this, not sure it will work but hey..
    String[] items = {"A", "B", "C", "D"};
    JComboBox combo = new JComboBox(items);
    ComboBoxUI cui = combo.getUI();
    cui.setPopUpVisible(combo, false); // sets popup visible to false
    cui.setPopUpVisible(combo, true); // set popup visible to trueEnjoy!
    Although ready over your post you just want the button removed, hmm never mind, try it.

  • 3.0 final- 2.1 EA1: Delete Persistent Settings missing in Data tab

    Hi,
    This cool new feature in the worksheet's result set seems to be missing from the table/view's Data tab. Can this be added?
    Thanks,
    K.

    Ah, I see it in the context menu now, nice.
    However, as you state, if we'd ever run into an invalid query, we wouldn't be able to recover from it.
    FWIW, I did run into invalid Data tabs in previous versions, but didn't run into an invalid result set nor Data tab in 2.1 yet. Obviously you guys are fixing bugs in this area too.
    I did restore column order with the button.
    So IMHO, having the button on the Data tab's toolbar would be more consistent with the worksheet's result grid and would play safe if anything goes wrong, but maybe you guys think it gets cluttered.
    If you're not sure about the button, let's see if anyone runs into an invalid tab and reports it here...
    Thanks,
    K.

  • When using fFire Fox with eBay a number of tabs are missing EG. respond tab for email Drop down buttons for active listings etc.. Parts of dropdowns are missing eg. rigt side of messages.

    I guess I should have used the word buttons. The buttons for drop down boxes are missing. The respond button is missing in email. The button for active listings options is missing. The accept offer buttons is missing for offers I receive. Some drop down boxes are only half shown (right side missing) I have cleared my cache, removed cookies, done something with online storage. I have uninstalled and reinstalled Fire Fox. This all seems to have started around the time I upgraded to 4.0. How can I correct this problem. I love Fire Fox. Right now I have gone to Internet Explorer and everything works fine there. HELP PLEASE

    See:
    * http://kb.mozillazine.org/Website_colors_are_wrong
    * http://kb.mozillazine.org/Websites_look_wrong
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * [[Troubleshooting extensions and themes]]

  • "Hyperion" drop-down menu missing from MS Word 2003

    Hello all,
    I have an end user who has had their "Hyperion" drop-down menu go missing in MS Word. Other than telling them to re-install Smartview, does anyone know of an easy way for them to get the menu back? In Excel, this is a simple fix but it doesn't seem to be as straight-forward with Word. We are running EPM 11.1.1.3 and Office 2003.
    Any feedback is very much appreciated.
    Regards,
    -Bob

    Uninstall/re-install did not work. Here are the steps that were required to resolve the issue.
    1. Open the MS Word 2007.
    2. Click Office Button
    3. Click “Word Options”
    4. Select “Add-Ins”
    5. At the bottom, select the option “Disabled items” for the option ‘Manage’ and click Go
    6. Enable Smartview

  • Drop down button is no longer located in the upper right corner of browser

    Using Firefox 5.01
    For some reason, my bookmark button is longer behaving as a dropdown box in the upper right corner of the browser?
    The box is there, but when clicked, my bookmarks appear on the left side of the screen.
    I used to be able to click the bookmark box, the bookmarks appear and drop down, select a bookmark and the bookmark menu closes.

    That does explain the X. Thanks!
    The reason I'm exporting in the first place is that a friend of mine wants me to fiddle with the rough cut of his video project a bit, and burn the results back onto DVD. (I think he thinks I can do more than I actually know how to at this point, but I figure that playing around with it is a good way to familiarize myself with the application.)

  • Where has the drop down button for page history gone from next to the Forward/Back page buttons?

    in previous versions of Firefox(and most other Browsers) there is a drop down next to the back/forward page buttons, that shows the last 10 of so pages browsed in the current tab......
    has this feature been removed from Firefox 4 and why, or is there a way to enable it?
    Currently using Firefox 4 on a Macbook running OSX 10.5.8

    You can get the drop down list by either control-clicking on the back/forward buttons, or holding down the left button until the list appears.
    If you want the drop-down arrow you can add it with the Back/forward dropmarker add-on - https://addons.mozilla.org/firefox/addon/backforward-dropmarker

  • Extracting values from drop down buttons html forms

    Hello,
    I would like to know how to obtain the values which is selected through the drop down box. Iam using Java Script as a client side scripting lang..
    Here is my code so far..do let me know what to do further. Iam not getting the alert mesg which is sitting in the put() so let me know how the put method should work
    Thanks a lot
    avis
    <HTML>
    <HEAD>
    <script language="javascript" type="text/javascript">
    <!-- hide
    function put()
    choice = document.forms.Pri.list.optionsdocument.forms.Pri.list.selectedIndex]
    if (choice ="0")
    alert("enter state"+choice);
    function goto()
    Pri.list.options.value=" "
    //end -->
    </script>
    </HEAD>
    <BODY>
    <form name="Pri" method = "get" action="">
    State<SELECT NAME="list" onChange="put()">
              <OPTION>
    <OPTION>Alabama
    <OPTION>California
              </SELECT>
    <input type="submit" Value="Submit">
    <input type=button name="Reset" value=Reset onClick=goto()>
    </form>
    </BODY>
    </HTML>

    I'm not sure what you're talking about... if you don't select an option from the list, the onchange function isn't going to be called, so of course the the alert isn't working.
    You sound like you are complaining that when the form submits, the value for the select list is the first option (""). I fail to see why this is a problem. If the value is "", then you handle it like nothing was selected. In a single select list like that, an option is always selected. The whole point of having a blank option is to allow the user to pick it. Otherwise don't put a blank option.
    In general, you don't need to use a button to do reset, you use a reset button: input type="reset". And it'll reset on it's own.

  • Flash Menu Drop down buttons

    Hi all,
    Im interested in creating a banner type flash menu with a
    header for each button and then once the mouse is clicked over the
    button a menu drops down with more buttons.
    Any help please?

    to clarify if i need, just the ones on the Macromedia site at
    the top.
    Any help?

  • Where did mygreen "firefox" drop down button go?

    ''conclusion of this support issue is here - https://support.mozilla.com/en-US/questions/844979 - locking this thread''
    i updated to ff5, lost my google toolbar, followed directions to download that 'reporter" thing. i then went & forced the toolbar to work, as directed, and did a dumb thing & told ff it was "fine now." well, sometime yesterday afternoon an evil thing occurred, and now i've lost google toolbar, tool icon AND the green drop down firefox menu. help? the current tab page now fills my monitor screen. i have to navigate waaaay up above it to get the address bar, back button, minimize, maximize & close button...and that's it folks! i have nothing else.

    yes, firefox will automatically update regularly - though you could disable that in the [[Advanced settings for accessibility, browsing, system defaults, network, updates, and encryption]], i would strongly discourage you from doing so since updates generally also contain [https://www.mozilla.org/security/known-vulnerabilities/firefox.html critical security fixes] & the integrity of your system and your personal data on it would be at risk otherwise.

Maybe you are looking for