Two bugs in SP9 HTMLB radioButton?

I am trying to trigger a client-side event when a radio button is clicked.  There are examples of this, but involve embedding Java in the JSP in the radioButton tag.  When I do that, there are two problems.  First, the object is null and cannot be accessed.  Second, the text label for the radio button disappears.
<hbj:radioButtonGroup
  id="rbgSearchSelect"
  columnCount="1"
  selection="<%=SearchBy%>">
  <hbj:radioButton
    id="rbSubscriptionSelect"
    jsObjectNeeded="true"
    text="Search by popular"
    key="101"
    disabled="false" >
<% // rbSubscriptionSelect is null, and text does not appear %>
  </hbj:radioButton>
</hbj:radioButtonGroup>
If I simply remove the <% %> line, the text label appears again.  Moving the code to add the client event to the bottom should also work, but the object is still null, even if you try to get it directly from the pageContext object (where the internal code puts it).  Here's the code I want to add:
rbSubscriptionSelect.setClientEvent(EventTrigger.ON_CLICK, "myfunc()");
Does anyone have a working example of setting a client-side event on a radio button on EP6 SP9?

Have you seen these Blogs??
Portal: Bug in the  radio button's javascript api
Useful undocumented javascript code for portal
Regards,
P.

Similar Messages

  • I've found two bugs in iOS 7. 1) declined calls does not appear as missed calls on the lock screen/notification centre. 2) when bluetooth is enabled from control center, it does not connect to an already paired bluetooth device

    I've found two bugs in iOS 7:
    1) declined calls does not appear as missed calls on the lock screen/notification centre - iOS 7.0.2.
    2) when bluetooth is enabled from control center, it does not connect to an already paired bluetooth device automatically - iOS 7.0.

    We are all users here, just like you, but you can tell Apple about it by using this link:
    Apple - iPhone - Feedback

  • Two bug fixes for DeferredWrite databases

    Hi all,
    If you are using DatabaseConfig.setDeferredWrite(true) to configured a deferred write database, you will be interested in two recent bug fixes. These fixes will be in the next patch release (JE 3.2.69 and later), but we haven't decided when that release will be made. In the mean time, please email me (mark.hayes at the obvious .com) and I'll make these fixes available to you.
    The change log entries for the two bugs are below. Note that first bug can cause data loss, since a log file is incorrectly deleted by the log cleaner.
    # Fix a bug that could cause LogFileNotFoundException when using a Deferred Write database (DatabaseConfig.setDeferrredWrite(true)). The bug could occur when a Deferred Write database was opened sometime after opening the Environment. The bug was very unlikely to occur if all Deferred Write databases were opened immediately after opening the Environment. [#15913]
    # Fix a bug that could cause Database.sync to hang. This bug was introduced in JE 3.2.68. [#15920]
    Thanks to Tyler (user611159) for working with us to diagnose these bugs and verify the fixes. He did many test runs over many days and supplied the log files we used to discover the bugs.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    2. Logic 7.1.1 had an annoying bug in the event list
    where if you selected, for example, four notes in the
    matrix editor, only three would be highlighted in the
    event list until you change their values. This seems
    fixed, too.
    Thanks for mentioning this.
    Would you mind checking something else out? In the attached pic (from 7.1.1) I have 4 notes highlighted in the matrix editor but only 2 are highlighted in the event editor. This correlates more or less with the behavior you reported (3 notes highlighted) and which you say is fixed (and is great news!).
    But notice where the SPL is positioned -- bar 1, beat 1. Yet in the event editor the pointer is aligned with "---Start of List---". In fact, when the sequence is played, the pointer is always aligned one event behind the currently playing event. This behavior has been a real problem.
    So I'm wondering if that specific behavior is fixed in 7.2. Would you mind checking and letting me know if this has been fixed?
    Thanks!
    [Note the pointer in the Event Editor,
    directly below, and what it is
    pointing to at bar 1, beat 1]
    G5, dual 2.7G, 2.5G RAM   Mac OS X (10.4.3)   LP7.1.1, MOTU 424/2408/1224 x 2
    G5, dual 2.7G, 2.5G RAM   Mac OS X (10.4.3)   LP7.1.1, MOTU 424/2408/1224 x 2

  • Problem with html table and htmlb radiobutton group

    Hello,
    I wrote this code:
           <table width="100%" border="1">
            <tr>
              <th>
                Valutazione manageriale complessiva dell#anno
              </th>
              <th>1</th>
              <th>2</th>
              <th>3</th>
            </tr>
            <tr>
              <th>
                imprenditività
              </th>
              <htmlb:radioButtonGroup id="PROVA1"
                                       columnCount="3"
                                        mode="LOGICAL_GROUPING">
              <th><htmlb:radioButton id="1" text="1"  encode="TRUE"/></th>
              <th><htmlb:radioButton id="2" text="2"  encode="TRUE"/></th>
              <th><htmlb:radioButton id="3" text="3"  encode="TRUE"/></th>
              </htmlb:radioButtonGroup>
            </tr>
            <tr>
              <th>
                Autorevolezza
              </th>
              <htmlb:radioButtonGroup id="PROVA2"
                                       columnCount="3"
                                        mode="LOGICAL_GROUPING">
              <th><htmlb:radioButton id="1" text="1"  encode="TRUE"/></th>
              <th><htmlb:radioButton id="2" text="2"  encode="TRUE"/></th>
              <th><htmlb:radioButton id="3" text="3"  encode="TRUE"/></th>
              </htmlb:radioButtonGroup>
            </tr>
          </table>
    but the third row (where there is "Autorevollezza/PROVA2") appears out of the table.
    Do yuo now why?
    Regards
    Maria

    you need to put the htmlb:radioButtonGroup Tags within the
    tags
    <tr>
    <td>
    imprenditività
    </td>
    <td>
        <htmlb:radioButtonGroup id="PROVA1" columnCount="3" mode="LOGICAL_GROUPING">
        <htmlb:radioButton id="1" text="1" encode="TRUE"></htmlb:radioButton></td>
    <td><htmlb:radioButton id="2" text="2" encode="TRUE"></htmlb:radioButton></td>
    <td><htmlb:radioButton id="3" text="3" encode="TRUE"></htmlb:radioButton>
         </htmlb:radioButtonGroup></td>
    </tr>
    there is a invisible table rendered by htmlb and the browser does not know what to do when you put that between </tr> and </table> so he ends your table...
    better you use <htmlb:gridLayout> instead of html-tables...
    stefan

  • HTMLB RadioButton

    Hi
    I am using a HTMLB radioButton in a JSPDynpage.
    I have a radiobutton group consisting of 2 radio buttons.
    I am unable to get the selected value in Javascript.
    I am using the following code
    (eval(func("radiobuttonId"))).getChecked();
    I get an error
    "Undefined is null or not an object"
    Can somebody help out please.

    Hi Prakash
    I tried your suggestion but it still doesn't work.
    I have pasted my JSP code here so that you can have a look.
    Towards the end there is a javascript function openwindow() where I am trying to alert the radio button values.
    <%@ taglib uri= "tagLib" prefix="hbj" %>
    <%@ page import = "com.sapportals.htmlb.enum.EventTrigger" %>
    <%     String buttonid = "";%>
    <jsp:useBean id="ProductInfoBean" scope="application" class="bean.ProductInfoBean" />
    <hbj:content id="myContext" >
    <hbj:document>
         <hbj:documentHead title="test"></hbj:documentHead>
         <hbj:documentBody>
       <hbj:form id="myFormId" >
              <hbj:gridLayout
              id="myGridLayout1"
              debugMode="False"
              width="40%"
              cellSpacing="5"
              >
                   <hbj:gridLayoutCell
                        rowIndex="1"
                        columnIndex="1"
                        width="10%"
                        horizontalAlignment="LEFT"
                   >
                        <hbj:textView
                             text="Title"
                             id="txtTitle"
                             tooltip="Title"
                             encode="false">
                        </hbj:textView>
                   </hbj:gridLayoutCell>
                   <hbj:gridLayoutCell
                        rowIndex="1"
                        columnIndex="2"
                        width="10%"
                        horizontalAlignment="LEFT"
                   >
                        <hbj:inputField
                             id="ipTitle"
                             type="String"
                             invalid="true"
                             width="100"
                             value=""
                             visible="true"
                             disabled="false"
                             required="false"
                             maxlength="30"
                             size="50"
                             design="standard"
                             jsObjectNeeded="true"
                        >
                        <%
                             ipTitle.setClientEvent(EventTrigger.ON_KEYDOWN,"handle_enter()");
                             ipTitle.setClientEvent(EventTrigger.ON_CHANGE,"handle_titleChange()");
                        %>
                        </hbj:inputField>
                   </hbj:gridLayoutCell>
                   <hbj:gridLayoutCell
                        rowIndex="2"
                        columnIndex="1"
                        width="10%"
                        horizontalAlignment="LEFT"
                   >
                        <hbj:textView
                             text="Promotion"
                             id="txtPromotion"
                             tooltip="Promotion"
                             encode="false">
                        </hbj:textView>
                   </hbj:gridLayoutCell>
                   <hbj:gridLayoutCell
                        rowIndex="2"
                        columnIndex="2"
                        width="10%"
                        horizontalAlignment="LEFT"
                   >
                        <hbj:dropdownListBox
                             id="ddPromotion"
                             tooltip="Promotion"
                             disabled="false"
                             jsObjectNeeded="true"
                        >
                             <hbj:listBoxItem
                                  key=""
                                  value="- Select Promotion -"
                             />
                             <%for(int i=0;i<ProductInfoBean.getPromotions().size();i++){%>
                             <hbj:listBoxItem
                                  key="<%=(String)(ProductInfoBean.getPromotions().elementAt(i))%>"
                                  value="<%=(String)(ProductInfoBean.getPromotions().elementAt(i))%>"
                                  />
                             <%}%>     
                        <%
                             ddPromotion.setClientEvent(EventTrigger.ON_CHANGE,"handle_promotionChange()");     
                        %>
                        </hbj:dropdownListBox>
                   </hbj:gridLayoutCell>
                   <hbj:gridLayoutCell
                        rowIndex="3"
                        columnIndex="1"
                        width="10%"
                        horizontalAlignment="LEFT"
                   >
                        <hbj:textView
                             text="Selection #"
                             id="txtSelection"
                             tooltip="Selection #"
                             encode="false">
                        </hbj:textView>
                   </hbj:gridLayoutCell>
                   <hbj:gridLayoutCell
                        rowIndex="3"
                        columnIndex="2"
                        width="10%"
                        horizontalAlignment="LEFT"
                   >
                        <hbj:inputField
                             id="ipSelection"
                             type="String"
                             invalid="true"
                             width="100"
                             value=""
                             visible="true"
                             disabled="false"
                             required="false"
                             maxlength="30"
                             size="50"
                             design="standard"
                             jsObjectNeeded="true"
                        >
                        <%
                             ipSelection.setClientEvent(EventTrigger.ON_KEYDOWN,"handle_enter()");
                             ipSelection.setClientEvent(EventTrigger.ON_CHANGE,"handle_selectionChange()");
                        %>
                        </hbj:inputField>
                   </hbj:gridLayoutCell>                                                                           
              </hbj:gridLayout>
                   <hbj:radioButtonGroup
                        id="rbgTypeSelect"
                        columnCount="2"
                        selection="rb_artwork"
                         >
                        <hbj:radioButton
                             id="rbArtwork"
                             text="Artwork"
                             key="rb_artwork"
                             tooltip="Extranet"
                             disabled="false"
                              jsObjectNeeded="true"
                        >
                        </hbj:radioButton>
                        <hbj:radioButton
                             id="rbProductDetails"
                             text="ProductDetails"
                             key="rb_productDetails"
                             tooltip="OVLC"
                             disabled="false"
                              jsObjectNeeded="true"
                        />
                   </hbj:radioButtonGroup>
                   <hbj:button
                     id="searchButton"
                    text="Search"
                  tooltip="Please click to search"
                  disabled="false"
                  onClientClick = "openWindow()"
                  jsObjectNeeded="true"
                  >
                   </hbj:button>
              </hbj:group>
       </hbj:form>
      </hbj:documentBody>
    </hbj:document>
      <script language="javascript">
         function clearSearchCriteria(){
              var funcName = htmlb_formid+"_getHtmlbElementId";
            func = window[funcName];
           (eval(func("ipTitle"))).setValue("");
           (eval(func("ipSelection"))).setValue("");
           (eval(func("ddPromotion"))).setValue("");
         function handle_enter(){
             var src= window.event.srcElement;
             k = window.event.keyCode;
             if (k == 13) {
                 // enter key pressed
                      openWindow();
         function handle_titleChange(){
              var funcName = htmlb_formid+"_getHtmlbElementId";
            func = window[funcName];
            var title = (eval(func("ipTitle"))).getValue();
            if(title != "")
                 (eval(func("ipSelection"))).setDisabled(true);
                 (eval(func("ddPromotion"))).setDisabled(true);
            else
                 (eval(func("ipSelection"))).setDisabled(false);
                 (eval(func("ddPromotion"))).setEnabled(true);       
         function handle_selectionChange(){
              var funcName = htmlb_formid+"_getHtmlbElementId";
            func = window[funcName];
            var selection = (eval(func("ipSelection"))).getValue();
            if(selection !="")
                 (eval(func("ipTitle"))).setDisabled(true);
                 (eval(func("ddPromotion"))).setDisabled(true);
            else
                (eval(func("ipTitle"))).setDisabled(false);
                (eval(func("ddPromotion"))).setEnabled(true);
         function handle_promotionChange(){
              var funcName = htmlb_formid+"_getHtmlbElementId";
            func = window[funcName];
            var promotion = (eval(func("ddPromotion"))).getValue();
            if (promotion!=""){
                 (eval(func("ipTitle"))).setDisabled(true);
                 (eval(func("ipSelection"))).setDisabled(true);
            else
                (eval(func("ipTitle"))).setDisabled(false);
                 (eval(func("ipSelection"))).setDisabled(false);
          function openWindow(){
               var funcName = htmlb_formid+"_getHtmlbElementId";
            func = window[funcName];
            var title = (eval(func("ipTitle"))).getValue();
            var selection = (eval(func("ipSelection"))).getValue();
                var promotion = (eval(func("ddPromotion"))).getValue();
    //            var selType = (eval(func("rbProductDetails"))).getChecked();
                var rb = eval(func(htmlb_radiobuttonmodifier+"rbArtwork")).getChecked();
                var rb2 = eval(func(htmlb_radiobuttonmodifier+"rbProductDetails")).getValue();
         alert("rb cheked " + rb);
         alert("rb2 value " + rb2);
    </script>
    </hbj:content>

  • Two bugs in Acrobat 9?

    I'm trying out a Document in Acrobat 9. I found two apparent bugs.
    On my PowerBook 17" I have installed correct Driver for my Printer a HP DJ 990cse. However when I go to set as default printer inside Page Setup within Acrobat 9 the is no indication of a printer. Yet when I go elsewhere such PDF Optimizer> advanced it shows the printer. Note I use printer Plugged into my Airport Express. Acrobat 8 has no problem with this setup.
    Problem two: In the document I noticed a defect in one line with the letter "g" and attempted to use touch up text to retype it to see if I could repair the defect. well when I did the text drop a point or so below the line and completely messed up anything in the box.
    My PowerBook 17 uses a display of 1400x900
    IN suggestions?

    Nemuri13 wrote:
     Gentlemen - the workaround is to open Acrobat first. Then do a file > Open to open the file in Acrobat. If you do this then you should see your printers in the Page Setup. If you double-click on the PDF to open it in Acrobat then you will NOT see your printers. This seems to affect only 10.4.11 and not any version of 10.5. Good Luck!
    For some reason this thread just showed up on new Forum System.
    Anyway I tried your work around. Had no affect.

  • Two Bugs in Sysprep: No Win Updates and CopyProfile Copies Search Suggestions

    We are using Windows 8.1 Enterprise 64-bit with Update 1.
    I am not sure where (and even if) Microsoft accepts bug reports, but here are two that have been major annoyances for us for the past week.  They have workarounds, but they really need to just be fixed:
    1. Windows Updates Do Not Work in Audit Mode
    In Sysprep's Audit Mode, the Windows Update functionality does not work.  Updates can be manually installed or installed via PowerShell scripts, but the built-in update functionality does not work in Audit Mode.  This behavior is unexpected, detrimental
    to deployments trying to use official tools, and contrary to the behavior of Audit Mode in Windows 7.
    We have verified this behavior in multiple installations.
    2. CopyProfile Unexpectedly Copies Start Screen Search History
    The CopyProfile setting in the unattend.xml file mostly works as expected, but there is at least one effect that can result in unexpected behavior.
    The Start screen in Windows 8.1 allows the user to perform searches, with categories such as "Everywhere," "Settings," and "Files."  When searching using "Everywhere," your search terms are stored at the following
    location as LNK (shortcut) files:
    C:\Users\<USERNAME>\AppData\Local\Microsoft\Windows\ConnectedSearch\History
    When you use CopyProfile, these entries are transferred to the default profile, so all new users get the Administrator's search history, too.
    In addition to this simply being annoying, there is a more serious issue: if any term searched by the Administrator account refers to files or settings that other users cannot access, then the user will receive an "Access is Denied" message.
    For example, as the Administrator, I searched for "Device Manager" using the "Everywhere" setting on the Start screen.  A search-suggestion entry was created for this search term in the above folder path.  Then, I Sysprepped
    the image using the CopyProfile setting, which copied the search suggestion to the default profile.  I then logged into Windows using a new standard user account, and "Device Manager" was a search suggestion by default.  When I clicked
    on this search suggestion as a standard user, a message appeared indicating that access was denied.  At first, I thought I had a serious issue; it seemed to indicate, after all, that I had no access whatsoever to the Device Manager.  However, I could
    still get to Device Manager by going through the Control Panel, so I did have access to the Device Manager itself.  Clearing the search history entirely eliminated this problem.
    Sysprep, even with CopyProfile, should not copy the search history contained in the
    ConnectedSearch\History directory.  Copying the search history is useless in any practical deployment, it is unexpected, and it gives the impression that Windows is malfunctioning when it is, in fact, working just fine.
    Is there a way to report these (and other) bugs to Microsoft?

    First, I sent an email to the author of PhotoME to inform him of the serious issues his addon caused with Firefox latest versions.
    Now, for those of you who do not have the PhotoME addon and yet experience the same problem that I had and that I described above, I suggest the following strategy.
    As PhotoME did cause these problems with Firefox latest versions, I am pretty covinved other addons probably might cause these problems too. Therefore, adopt the following method.
    Test one addon at a time to see if this particular addon is behind your Firefox issues like the ones I had.
    So, disable one addon only at a time. Then close your Firefox and restart it from scratch and see if you still have your Firefox problems. You must restart the Firefox browser from scratch. If you still have these Firefox problems, re-enable the disabled addon, restart your Firefox (again!) and repeat the same method for every single addon that you have.
    Try to be selective by choosing first addons that are more likely to cause your Firefox problems such as not very well-known or not very popular addons (like it was the case for the PhotoME addon).
    If this method works or if it does not work, report it on this web page so that others can be helped with your comments.
    I hope this method will help you because I was really upset that I had these Firefox problems and I first thought it was the fault of Firefox, only to discover later that this PhotoME addon was the culprit and had caused me such upset.

  • HTMLB - RadioButton - setClientEvent Javascript

    Hi All,
    I have a radiobutton, on click of this i need to display another set of radiobuttons. For this I have javascript function which displays the DIV.
    Below is the code for this.
    <hbj:radioButtonGroup id="radioGrp" columnCount="1" selection="<%=testBean.getSelectedRadio()%>">
    <hbj:radioButton  id="radioBtn" key="name" text="Name"  jsObjectNeeded="true">
    <%
    radioGrp.getRadioButtonForKey(radioBtn).setClientEvent(com.sapportals.htmlb.enum.EventTrigger.ON_CLICK, "onSelectRadio('radioBtn)");
    %>
    </hbj:radioButton>
    This works perfectly fine. When i select the radio button, the javascript function is displayed and relative DIV is displayed.
    But the problem here is, if I select the radio button and due to any other event on the page, if the page gets refreshed, I am getting below exception (Portal Runtime error) .
    Caused by: com.sapportals.htmlb.page.PageException: Eventhandler- "com.sapportals.htmlb.event.LinkClickEvent" or "onCom.sapportals.htmlb.event.LinkClickEvent" not found! '
    I have imported the EventTrigger and Event in the jsp.  If I comment the radiobutton code, I am not geting the above error.
    Please let me know your thoughts . I have been struggling to find a solution for this issue.
    Thanks
    Sudha
    Edited by: sona p on Jan 14, 2010 9:19 PM

    Hi,
       Try alerting "(theRadio.type)".
    If you are getting the proper checkbox instance then the alert should display "checkbox". If that much is working then checking the checkbox is as simple as
    var theRadio = eval(func(grpId + htmlb_radiobuttonmodifier.substring(3,7)+ "1"));
    if(theRadio)
       theRadio.checked = true
    By the way what does the function "func" do?
    Regards,
    Satyajit

  • Two bugs with 27++ battery behaviour

    Bug 1:
    55++ and 27++ batteries are both connected.  However, the 27++ "lock switch" is not on, and the message "Important information about the slick battery"..."To use the slice battery, the battery must be locked" will appear (this is expected).  The system in this case will start discharging the 55++ (this is expected).  However, when the 55++ battery drops to 0%, the system then start discharging from the 27++ battery...even when then "lock switch" is off.  (This is unexpected)
    So, is the popup message incorrect?  Or is the behaviour incorrect?
    Bug 2:
    Power manager's battery icon considers the total amount of charge of both batteries even when the lock switch is off on the 27++.  Relating back to bug 1, when the 55++ battery discharges to a warning level (3% is what I've set mine to), the alarm and events will kick in (this is correct, because even though the 27++ is at 100% charge, the switch is off, and the system should only consider the 55++ as functional).  However, the battery indicator icon (on the taskbar) of Power Manager and the "Total remaining battery" time & percentage considers BOTH the 55++ and 27++ batteries.  So, rather than displaying 3% and around 4 minutes, Power Manager displays 52% and 6 hours (this is unexpected).
    Lenovo, please fix this.  The user's experience should be consistent.
    System: 4282-CTO
    BIOS: 1.36
    OS: Windows 7 Pro 64bit
    Power Manager: 3.66
    PM Driver: 1.64

    someotherguy wrote:
    The switch should be in the locked position whenever the slice battery is attached.  If it is not, Power Manager will warn you, but it won't let your system die just because you forgot to flip a switch.  That would be a terrible design.
    Sorry you are disappointed with the way the slice battery fits.
    Yes, that I totally agree with.  In which case, it prompts the question of "Is there any electronic reasoning for the existance of the lock switch?".  The other two purposes of the lock swich I can see are:
    1. It changes the order of dischange between the 27++ and the 55++.
    2. It "locks" the battery in.
    So, the 27++ battery actually "functions" as a fully functional battery regardless of the lock switch's state.  Isn't it?  This conficts with the popup message prompt.
    Then the next thing is, Windows would report 0% as soon as the 55++ is dischanged...but the system would continue to use the 27++...which, IMO, is a conflict of information presented to the user.  While the battery indicator is a Windows feature, I believe Lenovo should remedy this difference in the reported capacity.
    Another question...is there a UX QA department somewhere?

  • IPhone 5 two bugs in photo app.

    Sorry, don't know where to submit bug reports... hope this place is okay.
    Bug #1 - photos are not properly fit to screen.  To see this, take a screenshot of the home screen, or, say, of your favorite video game on the iPhone 5.  Now, look at that photo in the photo app, and double-tap it as needed to "fit" that photo to the screen.  You'll notice black space at the bottom of the photo, and the top part of the photo is off-screen.  So, if you took a screenshot of the home screen, the "menu bar" (or whatever it's called) will be off-screen.
    Bug #2 - the "cancel" button that comes up in the delete menu doesn't work.  Try to delete a photo, then hit the cancel button.  You'll see the button is only barely functional - only the top sliver of the cancel button seems to accept input.

    #1 was in reference to screenshots, not camera photos.  Screenshots should obviously be the same aspect ratio as the screen.  In any event, fitting a photo to screen (even if it has a different aspect ratio) should not cause part of the photo to go off-screen.  I'm not talking about "letterboxing" here... the black space in question is ONLY on the bottom of the photo, not the top - the top part instead goes off-screen.  That is definitely a bug, and I have verfied that I don't get that bug in on my old iPhone4 (updated to iOS6.)  I don't have a 4S so I can't test it on that.
    I have also verfied that bug #2 does not happen on my iPhone4.

  • Possibly one or two bugs in Firefox v4.01

    When attempting to forward multiple non-consecutive E-mails by holding the CTRL key down and left-clicking the E-mails to forward, the receiver sometimes receives garbled text instead of multiple E-mails.
    I's never happened with multiple consecutive blocked E-mail forwarding (block select [using SHIFT key] the first and last E-mail to forward with all in between selected) and has only shown up corrupted twice out of about 20 attempts to send multiple non-consecutive E-mails.
    Second bug is similar to above.
    After forwarding multiple consecutive E-mails, all are marked with an icon as having been forwarded, but for multiple non-consecutive E-mails, some get marked with an icon and others don't!
    I use WinXP SP3 + all later patches.

    windows xp ?
    take a look:
    https://support.mozilla.com/en-US/questions/882621
    thank you

  • Two bug fixes in 1.03 firmware

    It looks like the constant rebooting bug is fixed. I loaded something over with an equalizer set and nothing bad happened. The other more trivial bug fix is that world times now work properly if you are in a time zone where daylight savings time is set.
    The bug where the date in the Date and Times settings always shows in US format is still there.
    Michael

    Sorry I missed the existing thread on this topic. Please reply to that one.
    Michael

  • Two bugs in my display

    I have two corn flies behind the glass of my flat panelled iMac. I live opposite a farmer's field of wheat and they crept in during the summer just before the harvest!
    Is there any way of removing the glass to remove them - they are only tiny, but it is a bit annoying having the blighters in full view all the time?

    No you can't remove the "glass" (it's actually plastic.) Don't even try to take apart your monitor. Don't try to smush them by pushing the screen that might just make it worse. You might have to take it into Apple and let them take apart your screen and fix it, that's all I can think of.

  • Between two ViewContainerUIElements want to add RadioButton & Its Events ch

    Hi friends,
    I have requirement using the WebDynpro JAVA that between the DropdownList and TableView I want to add Radio Button. And want to change the even accordingly.
    There is a ViewContainerUIElement_A which contained the Single DropDownList and another ViewContainerUIElement_B which contained the TableView. So based on the selection of dropdown list (ViewContainerUIElement_A) displayed records in the TableView(ViewContainerUIElement_B). Dropdown and tableView are  both use the Adaptive RFC Model. Which is working fine.
    Now i try to modify like this :
    I have created the RadioButton  as per requirement, after selection of  DropDownList , I am getting the radioButton values and able to select and see the change values  while clicking the Radio button which is perfectly working fine but tableView is not refreshing at all.now my question is how to call the TableView(ViewContainerUIElement_B) using the Radiobutton?
    So do I need to create the ViewContainerUIElement_C for RadioButton also, currently I am using the simple Radiobuton and Group for this.
    Do I need to create  ViewContainerUIElement_C for RadioButton also?  How to link with inbound plugs with this and how to call the even.
    Suggest me plz.
    Thanks
    Ali

    Hi Suresh,
    Since TableView is ViewContainerUIElement and creating dynamically so not able to see much codes here. Any Idea how to refresh the TableView using onSelect.
    I already assigned one method under the OnSelect of RadioButton using that i can see the selected values as message.
    Is there any way to call the Dropdown list event in the Radio Button?
    Thanks
    Ali

  • These two bugs have never been fixed since 10.8

    I've reported them over and over and it just seemed to get fixed. Because of these two issues I have decided that my 2013 Macbook Air will be my last Mac. These issues I have replicated on multiple Macs, not just my own. I've seen it with my own eyes happening to other Mac users so please don't tell me these two issues are not happening, because they are.
    The Finder is my biggest gripe. Apple ditched AFP for their own in house version of SAMBA. If you have a drive or folder of a server mounted in the finder and that server goes offline, you can't eject the drive or folder without the Finder locking up and having to force quit and relaunch the Finder. Not only does this happen if the server goes offline but it seems to happen if you've had the server mounted for too long. 10.8 - present
    When opening iTunes it would hang often when waking from sleep. iTunes would not open it just bounces up and down until you force quit. 10.9 - present
    General need to force quit applications for me has become common place as each new OS X version comes out.

    "General need to force quit applications for me has become common place as each new OS X version comes out."
    yes, it's more and more like windows after each update...

Maybe you are looking for

  • PO Mail

    Hi All, I have created a new output type for mail by coping NEU. I have assigned this output type in procedure. I have maintained condition records for NEU and Mail. But when I save PO only NEU is coming and mail is not coming. If i insert mail outpu

  • Adding Music to Lightroom Flash Gallery

    I would like to be able to add music.fla or music.swf files created in flash 8 to a published Lightroom Flash Gallery. Upon examination of the of the gallery.swf and the Index.html files I don't see where I can insert or embed the music files. Has an

  • Embedding My Gallery into a website?

    I have a website I am building- website funny .I have elements Organizer set up with multiple albums that I can sync up to Photoshop.com. I would then like to have a link on my website that launches an embedded copy of my gallery into the website so

  • I can't receive email after i resend reset my apple id password in my email

    Two way to reset apple id password, Email authentication: To access your information, we will send an email to the address(es) on file for you. Answer security questions: To access your information, you will need to answer the security question(s) pr

  • How to reinstall previous podcasts to a new HD

    Due to a faulty HD that was replaced Iv had to reinstall everything to iTunes.  Iv gotten everything previously purchased on iTunes, but cannot find how to get back previoius podcasts / podcast subscriptions.  Don't want to re-subscibe for fear that