Button next to Buy drop-down issues

Since this morning the small button next to "Buy" doesn't respond anymore.
The drop-down arrow looks scrambled and not like a triangle. I can buy anything, but can not post to my wish list or execute another function which is under the triangle. (copy link etc. )
Others in this forum experience the same. Tried to sign out, sign in, reboot, but nothing seems to help.
Strange.

Yes Matthew,
I too face the same issue, and like yours it solved by itself. But I observed that, at that time my basis people have installed some patch.   after completion of that it becomes normal
Regards
Srinivas

Similar Messages

  • IPHONE LAYOUT PAYPAL DROP DOWN ISSUES

    Everything in my site is working as it should.  I created a desktop version tablet version and iPhone version.  I do not have any items outside of the working space. However, when I go to the phone site as soon as I click the paypal button(which has a drop down menu) the site zooms in and then starts floating all over.  www.summitindoornx.com (must view on phone more specifically iPhone).  The site works fine in every other aspect.  I do not have any scrolling, parallax or any anchors.  No random containers?  What gives??

    Ok so I tried a different approach and there seems to be no impact.  PLEASE NOTE THIS IS THE PHONE LAYOUT AND YOU WILL NOT EXPERIENCE WHAT I AM DESCRIBING UNLESS YOU ARE ON A PHONE.
    Instead of using paypal drop down menus I created 2 separate buttons.  When the try to enter the required information in the txt box offered by paypal html buttons it does the same thing(ZOOMS IN FLYS ALL OVER THE PAGE, AND NEVER LOADS PROPERLY AFTER THAT). 
    So any drop down menu or text field you try to access ONLY on the phone layout creates this problem. You will not see this unless you are looking on a PHONE!
    Seems as tho PayPal integration hasn't been well thought out here.  Works on the tablet and on the desktop no issue.  In the case on my txt fields these are required as this is a registration which requires the persons name and the item they are registering for.  Can someone offer something?
    The site operates perfectly.....UNTIL YOU TRY TO ENTER TEXT IN THE BOX.

  • On the back button is the little drop down arrow completely gone, or is there a way I can I get it back. With the new Firefox I have to keep hitting back over and over again?

    Is the back button drop down arrow replaced by the little arrow next to the star on the bar?
    Maybe it didn't install correctly, I have Windows XP if that makes a difference. I know from the tour when the new one loaded there is supposed to be a bookmarks thing next to the new location for home but it's not on there either. It's still on my toolbar so I don't care enough to fix it so there is no need for anyone to address it, I just put the info in case it tells you something about it not installing properly.
    Sorry, it's not easy for older people to keep up with all the daily website changes, adding browser changes adds to the confusion. I hope my head doesn't explode one day. Thank you for the help.

    You can get the drop down list by either right-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

  • JSF drop-down issue

    Hi All,
    I have been reading a lot about drop-down boxes in JSF. Most of them have been very useful but have not been able to completely solve my problem here...
    I have a very simple page that displays a dropdown with model-id numbers. There is also a button below the dropdown which when clicked takes the user to another page and says "You selected this model: <model-id number from dropdown>"
    So far so good - all works fine. Now I wanted to add a description so that after clicking on the button I get the modelId as well as the model description - This just does not work - the page does not even come up and shows a lot of errors.
    In order to show the description as well I used the SelectItem constructor that accepts a value and a label. I used the modelId as the label and the model-description as value.
    Here is the jsp page code:
    <h:selectOneMenu id="selectedModel" value="#{modelBean.selectedModel}">
        <f:selectItems value="#{modelBean.models}" />
    </h:selectOneMenu>Here is the java backing bean code:
    This code is supposed to put the modelDescription as well - but does not work....
    public List getModels(){
            logger.debug("getting Models for display");
            this.models = new ArrayList<SelectItem>();
            for(Model model: modelIds){
                models.add(new SelectItem(model.getDescription(),model.getModelId()));
                logger.debug("Model added: " + model.getModelId() +" | " + model.getDescription());
            return models;
        public void setModels(List<SelectItem> modelsList){
            logger.debug("setting Models frm display");
            this.models = modelsList;
        public String getSelectedModel(){
            return this.selectedModel;
        public void setSelectedModel(String selectedModel){
            this.selectedModel = selectedModel;
        }I get these errors:
    On the browser:
    javax.faces.el.EvaluationException: Expression: '#{modelBean.models}'
         at net.sourceforge.myfaces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:463)
         at javax.faces.component.UISelectItems.getValue(UISelectItems.java:55)
         at net.sourceforge.myfaces.renderkit.RendererUtils.internalGetSelectItemList(RendererUtils.java:357)
         at net.sourceforge.myfaces.renderkit.RendererUtils.getSelectItemList(RendererUtils.java:300)
         at net.sourceforge.myfaces.renderkit.html.HtmlRendererUtils.internalRenderSelect(HtmlRendererUtils.java:369)
         at net.sourceforge.myfaces.renderkit.html.HtmlRendererUtils.renderMenu(HtmlRendererUtils.java:328)
         at net.sourceforge.myfaces.renderkit.html.HtmlMenuRendererBase.encodeEnd(HtmlMenuRendererBase.java:64)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:329)
         at javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:376)
         at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:280)
         at org.apache.jsp.gse.model_jsp._jspx_meth_h_selectOneMenu_0(org.apache.jsp.gse.model_jsp:306)
         at org.apache.jsp.gse.model_jsp._jspx_meth_h_form_0(org.apache.jsp.gse.model_jsp:183)
         at org.apache.jsp.gse.model_jsp._jspx_meth_f_view_0(org.apache.jsp.gse.model_jsp:147)
         at org.apache.jsp.gse.model_jsp._jspService(org.apache.jsp.gse.model_jsp:92)     
    Caused by: javax.faces.el.EvaluationException: Bean: com.sigma.gse.view.ModelPageBean, property: models
         at net.sourceforge.myfaces.el.PropertyResolverImpl.getProperty(PropertyResolverImpl.java:458)
         at net.sourceforge.myfaces.el.PropertyResolverImpl.getValue(PropertyResolverImpl.java:113)
         at net.sourceforge.myfaces.el.ELParserHelper$MyPropertySuffix.evaluate(ELParserHelper.java:541)
         at org.apache.commons.el.ComplexValue.evaluate(ComplexValue.java:145)
         at net.sourceforge.myfaces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:438)
         ... 56 more
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at net.sourceforge.myfaces.el.PropertyResolverImpl.getProperty(PropertyResolverImpl.java:454)
         ... 60 more
    Caused by: java.lang.NullPointerException: value
         at javax.faces.model.SelectItem.(SelectItem.java:55)
         at com.sigma.gse.view.ModelPageBean.getModels(ModelPageBean.java:48)
         ... 65 more
    On the Tomcat console:
    ERROR - PropertyResolverImpl.getValue(117) | com.sigma.gse.view.ModelPageBean
    javax.faces.el.EvaluationException: Bean: com.sigma.gse.view.ModelPageBean, property: models
    at net.sourceforge.myfaces.el.PropertyResolverImpl.getProperty(PropertyResolverImpl.java:4
    at net.sourceforge.myfaces.el.PropertyResolverImpl.getValue(PropertyResolverImpl.java:113)
    at net.sourceforge.myfaces.el.ELParserHelper$MyPropertySuffix.evaluate(ELParserHelper.java
    Code that worked:
        public List getModels(){
            logger.debug("getting Models for display");
            List<SelectItem> models = new ArrayList<SelectItem>();
            for(Model model: modelIds){
                models.add(new SelectItem(model.getModelId()));
            return models;
        public String getSelectedModel(){
            return this.selectedModel;
        public void setSelectedModel(String selectedModel){
            this.selectedModel = selectedModel;
    I need help in figuring out what I am doing wrong? If you see there is very little difference between the code that worked and the above defective code.
    Thanks a TOn in advance,
    Anoop

    Hi,
    I am trying to dynamically populate a combo box at screenload. I aslo checked the codes that you have put up in the forum.
    private List searchPMPCountys;
         private List searchNCMs;
         private String selNCM;
         private String selPMPCounty;
         private List searchUnassignedPatients;
         public List getSearchNCMs() {
              searchNCMs = new ArrayList(1);
              searchNCMs.add(new SelectItem("Lynn"));
              return searchNCMs;
         public void setSearchNCMs(List searchNCMs) {
              this.searchNCMs = searchNCMs;
         public List getSearchPMPCountys() {
              searchPMPCountys = new ArrayList();
              List AllPMPCounty = patientmgr.getAllCounties();
              if (AllPMPCounty != null) {
                   Iterator it = AllPMPCounty.iterator();
                   while (it.hasNext()) {
                        NcmCounty county = (NcmCounty)it.next();
                        searchPMPCountys.add(new SelectItem(county.getCountyName()));
                   //String startTag = ((SelectItem)searchPMPCountys.get(0)).toString();
              return searchPMPCountys;
         public void setSearchPMPCountys(List searchPMPCountys) {
              this.searchPMPCountys = searchPMPCountys;
         public String getSelNCM() {
              return this.selNCM;
         public void setSelNCM(String selNCM) {
              this.selNCM = selNCM;
         public String getSelPMPCounty() {
              return selPMPCounty;
         public void setSelPMPCounty(String selPMPCounty) {
              this.selPMPCounty = selPMPCounty;
    <td>
                                                 <h:selectOneMenu id="listingNCM" value="#{patientTool.selNCM}">
                                                      <f:selectItems value="#{patientTool.searchNCMs}" />
                                                      </h:selectOneMenu>
                                            </td>
                                       </tr>
                                       <tr>
                                            <td>
                                                 PMP County
                                            </td>
                                            <td>
                                                 <h:selectOneMenu id="listingPMPCounty" value="#{patientTool.selPMPCounty}">
                                                      <f:selectItems value = "#{patientTool.searchPMPCountys}" />
                                                      </h:selectOneMenu>
                                            </td>
                                       </tr>
    I am new to web and in paticular to JSF. I was wondering if you any of you can guide me??
    I could pull up the screen only once. But the components were not rendered properly I had to reload the screen and I am getting this error as shown below..
    java.lang.IllegalArgumentException: Value binding of UISelectItems with id searchAsgn:_id11 does not reference an Object of type SelectItem, SelectItem[], Collection or Map but of type : null
         at net.sourceforge.myfaces.renderkit.RendererUtils.internalGetSelectItemList(RendererUtils.java:393)
         at net.sourceforge.myfaces.renderkit.RendererUtils.getSelectItemList(RendererUtils.java:309)
         at net.sourceforge.myfaces.renderkit.html.HtmlRendererUtils.internalRenderSelect(HtmlRendererUtils.java:355)
         at net.sourceforge.myfaces.renderkit.html.HtmlRendererUtils.renderListbox(HtmlRendererUtils.java:321)
         at net.sourceforge.myfaces.renderkit.html.HtmlListboxRendererBase.encodeEnd(HtmlListboxRendererBase.java:69)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:329)
         at javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:376)
         at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:280)
         at org.apache.jsp.pages.patientAssignment_jsp._jspx_meth_h_selectManyListbox_0(patientAssignment_jsp.java:1086)
         at org.apache.jsp.pages.patientAssignment_jsp._jspx_meth_h_form_0(patientAssignment_jsp.java:473)
         at org.apache.jsp.pages.patientAssignment_jsp._jspx_meth_f_view_0(patientAssignment_jsp.java:229)
         at org.apache.jsp.pages.patientAssignment_jsp._jspService(patientAssignment_jsp.java:114)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at com.opensymphony.module.sitemesh.filter.PageFilter.doFilter(PageFilter.java:39)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at us.in.state.isdh.cdms.ncm.web.MessageFilter.doFilter(MessageFilter.java:41)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
         at net.sourceforge.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:404)
         at net.sourceforge.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:241)
         at net.sourceforge.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:287)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:110)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.displaytag.filter.ResponseOverrideFilter.doFilter(ResponseOverrideFilter.java:125)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at com.opensymphony.module.sitemesh.filter.PageFilter.parsePage(PageFilter.java:118)
         at com.opensymphony.module.sitemesh.filter.PageFilter.doFilter(PageFilter.java:52)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at us.in.state.isdh.cdms.ncm.web.MessageFilter.doFilter(MessageFilter.java:41)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Unknown Source)
    There is no server error. I am using Tomcat server..
    Thanks,
    Raji

  • Clicking the back button now causes a drop down of past sites to show up in addition to moving back a page. It won't go away until clicking somewhereIrritating

    Whenever I click the back button, the browser will go back a page and also open a drop down of past pages. This drop down won't go away until I click somewhere. It is irritating and it never used to have this functionality. In fact, my laptop at work does not do this. I am using 37.0.2. Is there an option somewhere to disable this? I don't mind having the drop down, but not EVERY time I click back.

    Today, two other users reported issues with the back-forward history list dropping down if they hovered the mouse pointer over the back or forward button -- without clicking -- and then moved the pointer downwards. One user was on a touchpad, I don't know about the other user. Are you experiencing anything like that?

  • Why can't we have "show cookies" menu be a button in the new drop down menu on FF29 ?

    I see the new Firefox 29 has a drop down menu in the upper right corner, with various shortcut symbols. One of them is "preferences", but I would like to make that to be have an even shorter shortcut to "show cookies", instead of having it buried in several clicks as in the old versions of FF.

    # Install Cookie Manager Button and restart Firefox if prompted.
    #* https://addons.mozilla.org/firefox/addon/cookie-manager-button/
    # Right-click (or Ctrl+click) an empty area of the tab bar and choose Customize.
    # Drag the Cookies button from the palette onto the menu panel on the right.

  • The new design seems to be doubled, with the standart windows style underneath the new buttons and also the drop down menus are unreadable..

    ''''''i installed the new firefox and now its got a weird graphic glitch. i run windows 7 starter on my netbook and it seems as if the main window got two layers, the windows style and the new firefox style on top. the problem is, beside that some buttons dont really work, that the drop down menus are not really readable and the highlighting in the dropdown menus stays after going thought them.
    greets

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    Try to disable hardware acceleration.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.

  • Peachpit "Motion5" p. 54, Step 11 drop-down issue - my screen looks different

    This problem requires the Peachpit "Motion5" book to reference because it is copyrighted and I can't take a picture of the page in question.
    The subject page shows a drop-down window with "sliders" for Red, Blue, and Green and one is supposed to enter in new values for each color. HOWEVER, since the book is old and based on an earlier version of Motion5, this is a PROBABLE cause as to why the dropdown I'm getting looks different from the book's version.
    So, either the dropdown has changed, OR, "I'm not getting it." (the latter is a real possibility although I've tried every option I can think of)
    NOTE: I've tried to find Errata information for the book and there are only a few items listed, none of which covers this issue.
    My screen shot:
    The lesson requires that one type in 0.63 for Red, 0.35 for Green, and 0.06 for Blue. Unfortunately, one cannot enter in a decimal point, ergo, this cannot be done.
    The screen shot is for Motion 5.1
    Any ideas?

    The book said to "... click the disclosure triangle ...." and I took that to mean the triangle to the right of the Remap colored square. This I tried numerous times and wound up with the color scheme shown in your right screen shot.
    This has been a while so I don't remember the exact place, but after clicking on the arrow on the left side of the Remap (or maybe it was the colored square like you showed) there was a better window that opened:
    This one allowed me to dial in exactly the paramerters that was asked for.
    WHEW!
    What an ordeal. But it's over and figured out now. A relief.
    Like you mentioned, I also was waiting for the publisher, or some other publisher, to come out with a Motion 5.1 book but couldn't wait any longer. If they continue to print and sell the old "5" version you'd think they'd at least have a good Eratta page somewhere that would provide the changes as well as fill in the holes in the procedures. Certainly, if this was used for class instruction they would know what questions the students struggled with. Oh well.
    Currently I'm up to page 65 and struggling with Step 13 to get the bright orange/brownish-yellow color they show. I'm only able to get a light version of the general background color. Tried the grey also, and ditto there. Just isn't working. I'm getting the colors I want in the color box but not on the screen. Sort of a partial. The HUD looks just like the picture in the book.
    In Step 12 it says to "click the Add Filter pop-up menu ..." but I can't find where they're talking about it. I've looked everywhere. Need to take a rest and work on this tomorrow.
    Thanks for the support.
    Edit: What happened? What do you mean? This didn't help me - Geeze, I wrote it! Need to get some rest.

  • Droid Maxx XT1080M Screen Rotation Problem and Notification Drop Down Issue

    My droid maxx xt1080m screen rotation got stuck on landscape while viewing photos the other day. I went into settings and unchecked the box for auto rotate screen. My photos were still in landscape and would not go back to portrait. I turned off the phone and restarted, went back to the gallery and pictures were back to portrait. I then went into the settings and checked the box for auto rotate screen, went back to photos and they will not rotate. Nothing and I mean nothing will rotate at all. Photos in the gallery that used to rotate, apps that used to rotate will not rotate. How do I fix this?
    Now I also notice that the notification list at the top will not drop down when swiped down. I will have to swipe it 7-8 times to get it to come down. This is my second maxx as the first one got stuck in a loop on boot up and would not reset.

    Can you boot into SAFE MODE ??  You can also UNINSTALL that Gallery Lock APP from the online Android Market (PLAY).
    Safe mode:
    - Power Off
    - Power On
    - Press & HOLD both up & down volume buttons at the same time -- for like 3 mins while it boots up. Keep holding these down!
    - Phone should eventually come up and say SAFE MODE in lower left corner ..
    Does THAT work???  If so, see if that app is in your APP drawer and try to uninstall it.
    If that doesn't work, you can boot into the Maintenance Menu using a similar procedure that can get you to the ability to do a Factory Reset, if that's what you want to do.
    let us know.

  • DW CS4 drop-down issue - maybe browser issue?

    http://prosol1.com/employment2.html
    Hi - I put this drop-down thing together using JS and DW.  The Training expand and collapse seems to work for me in Chrome and IE but 2 other people tell me it's not working for them.
    Does anyone have any idea what the problem might be?
    Thanks.

    There's a good number of validation errors on the page:
    http://validator.w3.org/
    But nothing that should be directly related to that one section.  Works for me in Safari, Chrome and Firefox.
    Can you ask them what's not working, what browser/OS they are using and to possibly provide screenshots of what they see?

  • Drop down Issue

    Hi
    I have one report with using dashboard prompt and table.While filter the records based on that displaying the records.
    In that table i used navigate another report. In navigated report developed pivot chart with using pages(drop down names).
    1. My requirement is while without using dashboard filter it should display all the names in drop down list in my navigated report.
    and it should display in drop down, which name selected in my table.
    2. If i selected dashboard prompt it should display based on the names only in drop down and what name i selected in table that should be in my drop down.
    E.g
    1. I have names like Name1, Name2, Name3,Raj1,Raj2,Raj3 without using dashboard prompts.
    While clike the Name1 it should be display my navigate report drop down corresponding name. and similarlly
    it display all the name also in my drop down. How to do this.
    2 In my first report i used Country='UK'
    Under UK have the Name like Raj1, Raj2, Raj3.
    This name should be display in my navigate report drop down. and If i select Raj1 that in my navigate drop down first.How to do this
    In my first report i used country filter becos of Coutry is dashboard prompt.
    In Navigated report i used country filter bcos of i should display the country name in navigated report.
    Thanks

    hi,
    Use ISPromoted filter condition in the navigate report (Column -->Page drop down one)
    So that it will filter and show the value in the page drop down of the pivot table
    Thanks,
    Saichand.v

  • Drop down issues

    I'm having trouble with drop down menus not been visible long enough to select.   Example while reading local paper sports section has a drop down menu to go directly to baseball. The menu doesn't stay visible long enough to go to that section.   Any suggestions.  Thanks

    Sounds like you pulling those menus, before you allow that page to upload completely. I have the same habit.

  • Parameter drop down issue in XI Rel. 2 report viewed with XI Rel. 1

    I've modified a report (originally created in Rel. 1) with Rel. 2.  I've modified the one parameter.  Everything works fine when viewing the report in Rel. 2.  When I send the report to someone with Rel. 1, they get the parameter screen with a blank text box and the name of the value element defined for the parameter in the upper right hand portion of the parameter screen.
    If they click okay, that parameter screen is replaced with the correct one - that displays a dropdown and doesn't have the parameter value element displayed.
    The same is happening with other reports I'm working on.  Short of upgrading everyone to Rel. 2 (which is likely not a viable option), any suggestions?

    Hi
    Please provide the exact version and patch level of Rel. 1 that the users are working on.
    Version : You can find this infrmaion at HELP>>About Crystal Reports
    Patch Level : C:\Program Files\Business Objects\Crystal Reports 11\Patches\History.txt
    - Also, are you and the rest of the users opening these reports within crystal report designer application direcly?
    - What happens if they create new reports at their end which include parameters in them.Does the same thing occur for these reports also?

  • Drop down menu button will not change color

    I have built a 6 button  rollover dropdown menu bar in Flash CS4
    On five of the dropdown menus I can get the buttons to change color
    On the fifth dropdown I can see the button, but when rolled over I can't get the color to change.
    I have moved the buttons on the fifth drop down to the first drop down button and they work perfectly.
    Is this a bug in Flash CS4 or......
    thank you
    Sb!

    I appreciate your reply but those arrows were not the ones I was trying to describe. In the same box where you would type your web address on the far right is a small star and then next to it an arrow pointing down. If you click on this arrow, it normally drops down a list of the websites you commonly use. Or, if you are on a website ordering something, there might be a similar arrow that you need to select in order to choose which shipping you might want such as ground, next day air, etc., these are the kinds of arrows that are not working correctly now. Any ideas on these? Thanks for trying to help me.

  • 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

Maybe you are looking for

  • Facebook Photo uploader not working

    Hi a few weeks ago (nov 2012) i upgraded to the latest vresion of facebook, but if i now go into the app and click to upload a photo, nothing happens, not even an error message appears. everythign else is working fine though. Photo uploading works if

  • Gallery modifications (hints wanted)

    Hi, I'm a newcomer in the area of web development but I've spent a few years in VB development so I thought I'd give the Gallery a try. I've setup up my own gallery based on the demo example and it works just fine. The web is not public yet, but it l

  • Strange: don't print from usb pendrive but print from hdd

    Hi, i've found this strange behaviour: if i open a pdf file from a pen drive, and after i try to print it, i have the message: You need to install a printer...... then if i copy the same file to the hdd, then i open this file and print it, now i can

  • I can't find where iweb saves files. i have no iweb folder in my library applications. any ideas?

    i can't find where iweb saves files. i have no iweb folder in my library applications. any ideas?

  • Some settings lost after AVG virus scan

    I run Firefox 19.0.2 on Windows XP SP3. I use AVG Internet Security 2013. Normally, Firefox runs fine and opens my chosen Home Page every time I open the program. However, the first time I open Firefox AFTER the daily complete PC virus/trojan scan by