Javascript: element.style.display = 'block';

Hi,
Our company is developing a mobile web app for the black berry devices.
My testing has been done on 8350i and higher and all is fine.  However, when working with the 8330, OS v4.5, I'm getting a Javascript error for the following code.
var element = document.getElementById('somedivid');
if( element != null)
    element.style.display = 'block';  <---- error
I'm getting the element OK but the element.style.display is undefined.  Is there workarond this?
Thanks for your help.

hi,
Did you find out the workaround. IF so please post it . Appreciate your help

Similar Messages

  • Flash resets in Firefox with javascript's style.display

    We have a javascript code that uses "style.display" to
    hide/unhide different section. But when using to this unhide, if
    any flash content was there (already run, either litttle bit or
    fully), it resets back to the initial position.
    In IE, it works fine.
    Even though flash works fine in firefox with
    style.visibility, due to various other issues, we cannot use this.
    Anyone can suggest how we can stop flash getting 'reset' when
    hiding/unhiding the section using "style.display"?
    Thanks,
    karl

    ...tried that, made no difference!  
    (only the top one had spaces initially)
    One thing though, sticking the swf link alone in the address bar works okay in Firefox!! ... but still showing blank white space in the full HTML doc??
    (even IE with compatibility mode switched "off" throws it to the right!!)
    Coding for cross browser compatibility ... OH JOY!!!!
    Kind Regards,
    Cal

  • I cannot set elements to display:none with javascript. Does captivate keep setting them to block?

    Hey everyone,
    I do a lot of work with switching between languages in the modules.  I can accomplish this by creating a lot of tedious "Show" and "Hide" advanced actions for the numerous texts that need to be displayed, but being a programmer I think there's a better way through the use of a single Javascript script. 
    This is how I believe it will work when finished:
    The script goes through the DOM and retrieves all elements that have the class cp-frameset which is common to all entered text fields.  It then goes through and sorts these DOM elements that were retrieved into separate arrays based on ID because all English texts have English_1_1 (the English prefix) and all other languages (such as German) has the German prefix (like German_1_1).  Doing this, I can have numerous and indefinite arrays of ID's for each different language.  Then, the theory was, that I would go through and as a slide loads check the language user defined flag (0 for english, 1 for german, 2 for spanish, etc. etc.) and based on that go through each array which contains the ID's for every text element and then set each DOM's style.visibility to 'visible' or 'hidden' based on what the language flag is, or display:none/display:block.  The code follows (only contains two languages for ease):
    var englishElements = new Array();
    var germanElements = new Array();
    var languageFlag = cp.variablesManager.getVariableValue('language');
    console.log("languageFlag "+languageFlag);
    function findElements(){     //Function to find all English/German elements, split into arrays for display/hiding
          var theElements = document.getElementById("div_Slide").getElementsByClassName("cp-frameset");
         console.log(theElements);
         for(var i = 0; i < theElements.length; i++){
              if(theElements[i].id.lastIndexOf("English", 0) === 0){ //Getting all ElementID's that have English as the prefix, for looking up later (need to maintain unique suffix)
                   englishElements.push(theElements[i].getAttribute('id'));
              }else if(theElements[i].id.lastIndexOf("German", 0)===0){ //Getting all ElementID's that have German as the prefix, for looking up later
                   germanElements.push(theElements[i].getAttribute('id'));
    findElements();
    console.log(englishElements);
    console.log(germanElements);
    function hideElements(langFlag){ //Function for hiding elements based on the language flag set by the user by clicking buttons in the module
         if(langFlag == "0"){ //English case
              for(var i = 0; i < englishElements.length; i++){ //Showing english elements
                  var engElement = document.getElementById(englishElements[i]);
                  console.log("showing ");
                   engElement.style.visibility = 'visible';
                   engElement.style.display = 'block';
              for (var j = 0; j < germanElements.length; j++){ //Hiding german elements
                   var germElement = document.getElementById(germanElements[j]);
                   console.log("hiding");
                   germElement.style.visibility = 'hidden';
                   germElement.style.display = 'none';
         }else if(langFlag == "1"){  //German case
                for(var i = 0; i < englishElements.length; i++){ //Showing english elements
                   document.getElementById(englishElements[i]).style.visibility="hidden";
                    document.getElementById(englishElements[i]).style.display="none";
                   console.log("hiding "+englishElements[i]);
              for (var j = 0; j < germanElements.length; j++){ //Hiding german elements
                   document.getElementById(germanElements[i]).style.visibility="visible";
                   document.getElementById(germanElements[i]).style.display="none";
                   console.log("showing "+germanElements[i]);
         }else{ //Bogus case
           console.log("BOGUS CASE@!!!!!@!#@!#!");
    hideElements(languageFlag);
    When it gets to the portion with hiding German elements, running in the browser, I would think that the elements would be hidden or displayed properly.  The visibility attribute seems to get set when I inspect the HTML, but the display is always display:block, and never display:none
    I can't seem to find any in-depth JS resources for Captivate, so I would greatly appreciate help!
    OH! One more thing!  Anybody know how to retrieve an element's transition timers?  I figure that when I get this displaying correct, it'll display everything instantly instead of fading in/out like I would really like.

    Hi kastwf001,
    My name is Mehdi from Cisco Technical Support, just want to inform you regarding QuickVPN is an light software using IPsec service of windows, so here it depend of windows and firewall ... IPsec setting on windows, encryption ... 
    anyhow for RV120W it's open for 3rd party software as ShrewVPN , TheGreenBow ... and working as expected since those software are using their ip sec services ..
    Please follow configuration steps on RV120W and ShrewVPN (screenshots taken from you post) :
    Please let me know if you have any question
    Please rate the post or mark as answered to help other Cisco Customers
    Regards
    Mehdi 

  • Firefox browser style.display issue (IE works fine)

    I have a dropdown which calls javascript method on change the selection. In the JS function, initially i make one row div is invisible if dropdown if i selected 1 that row become visible if i select2 that row become invisible ...this works fine in IE..but in firefox its not working ..also it gives lot of space.. this is the code i am using
    <div id="row">
    <tr>
    <td> <h:inputText value=""/></td>
    </tr>
    </div>
    In java script
    document.getElementById('row).style.display="none";
    how can i solve this problem

    This is simply invalid HTML. Hide the actual row, not the div. Technically move the id="row" to the tr element and throw that div element away from the table.

  • Display:block not showing anchor link as a block in IE9

    The display:block CSS code is making the anchor link inside a div, i.e.
    <div><a>some text</a></div>
    behave as a block in a site viewed in Chrome etc.
    However, it is not behaving like a block in IE9. Instead of the whole width of div which should behave like a block and be clickable, only the actual text of anchor link <a> is clickable.
    Please advise on how to ensure the whole div behaves like a block in IE9 also.

    I checked and found that the probable problem is as described below.
    I have indicated the style for a.link and a.visited in the starting of the css file as
    a:link { color:#009900; text-decoration: underline;}    
    a:visited { color: #4E5869; text-decoration: underline;}    
    Later in the css file, I have defined styles for cbt, cbt a, cbt a:link and cbt a:visited separately. the styles for cbt etc is as below:
    cbt { display:block;  float:none; 
    position: relative; 
    margin:5px 2px; 
    padding-left:1px;
    padding-right:1px;
    padding-top:5px; 
    padding-bottom:5px;
    z-index:4;
    clear:both; } 
    cbt a, cbt a:link {  font-size: 1em;
    text-decoration:none;  text-align:justify;
    text-justify:inter-word; 
    font-weight:normal; 
    word-wrap:break-word; 
    color:#00C;  display:block; }  
    cbt a:visited { color:#CC0033; }
    The anchor link a is nested inside cbt tag in the html file as
    <cbt><a href="abc.com">some text</a></cbt>
    Inspite of the above codes, the anchor link a inside cbt tag is not taking the styles defined with cbt a, cbt a:link, but is instead taking styles defined in a:link initially.
    Hence they are behaving as inline elements in IE9 when hosted on remote server by taking the initial style defined.
    However,when the same page are viewed on localhost in IE9, the links behave as block elements (taking the later defined styles). The links also behave as block elements inside Chrome browser when viewed on localhost as well as on remote server. In this situation the links are taking the styles defined later in the css file.
    Please advise on why the css behaviour is so erratic.

  • Center the DIV content with nested display: block float Left

    I have a series of images that use a Spry fade effect as a slide show.
    It works OK but the images are all jammed up into the top left corner
    even when i put them in a table. I have attached the body code below.
    Can anyone please help solve this poblem?
    Thank you kindly.
    <table width="800" border="0" align="center">
      <tr>
        <td> <div class="quote" style="position: relative; top: 0px; left: 0px; opacity: 0; display: none; visibility: visible;"> <img height="600" width="800" src="/uploads/images/_009a.jpg" alt="" /> </div>
    <div class="quote" style="position: relative; top: 0px; left: 0px; opacity: 1; display: block; visibility: visible;"> <img height="600" width="800" src="/uploads/images/_010a.jpg" alt="" /></div>
    <div class="quote" style="position: relative; top: 0px; left: 0px; opacity: 0; display: block; visibility: visible;"><span class="quote" style="position: relative; top: 0px; left: 0px; opacity: 0; display: block; visibility: visible;"><img height="600" width="800" src="/uploads/images/_047a.jpg" alt="" /></span></div>
    <div class="quote" style="position: relative; top: 0px; left: 0px; opacity: 0; display: none; visibility: visible;"> <img height="600" width="800" src="/uploads/images/_056a.jpg" alt="" /></div></td>
      </tr>
    </table>

    Please refer to the link: http://www.adobe.com/devnet/dreamweaver/articles/first_website_pt3.html
    Styling the images with captions
    To keep the image and caption together and center them, you need to give the <figure> element a width. You'll also add a CSS drop shadow effect to the image to make it look more like a photograph.
    Styling the <figure> and <figcaption> elements
    The small images in the home page and sightseeing.html are all 400 pixels wide. To create the photo effect, you need to add another 20 pixels to the width of the <figure> element.
    Make sure main.css is selected in the Sources pane, and create a new selector called figure.
    In the Layout section, set width to 420px.
    Create a selector for figcaption.
    Before you can center the caption, you need to set its display property (in the Layout section) to block.
    In the Text section, set the following properties:
    font-weight: bold
    font-size: 14px
    text-align: center
    Step 4 above is my problem. How can I set its display property (in the layout Section) to block?

  • DW8 Crashes on display:block

    I have the following in source view
    as you can see I have display:none for the DIV ID MultiBin
    If I want to see this displayed in Design View by changing
    display:none to display:block, DW8 crashes each and everytime
    Question is WHY? and if there is anything I can do to prevent
    the crash
    <div ID="MultiBin" align="center"
    style="display:none;width:75%">
    <table width="100%" border="0" cellspacing="0"
    cellpadding="0"
    class="bordx">
    <tr>
    <th width="30%" class="THALL" scope="col" >Bin Number
    </th>
    <th width="32%" class="THALL" scope="col">Card Type
    </th>
    <th width="38%" class="THALL" scope="col">Number of
    cards
    </th>
    </tr>
    <tr>
    <td height="32" align="center"><input name="BinA2"
    type="text" id="BinA2" size="15"
    maxlength="15"></td>
    <td align="center"><select name="select"
    id="select">
    <option selected>Select Card Type</option>
    <option value="ATM">ATM</option>
    <option value="BILL PAY">BILL PAY</option>
    <option value="DEBIT">DEBIT</option>
    <option value="HEALTH CARE DEBIT">HEALTH CARE
    DEBIT</option>
    <option value="HELOC">HELOC</option>
    <option value="VISA DEBIT">VISA DEBIT</option>
    <option value="MASTERCARD DEBIT">MASTERCARD
    DEBIT</option>
    <option value="PRE-PAID DEBIT">PRE-PAID
    DEBIT</option>
    <option value="VISA">VISA</option>
    <option value="MASTERCARD">MASTERCARD</option>
    </select> </td>
    <td align="center"><input name="Cards2" type="text"
    id="Cards2" size="10" maxlength="10"></td>
    </tr>
    <tr>
    <td height="31" align="center"><input name="BinA3"
    type="text" id="BinA3" size="15"
    maxlength="15"></td>
    <td align="center"><select name="select2"
    id="select2">
    <option selected>Select Card Type</option>
    <option value="ATM">ATM</option>
    <option value="BILL PAY">BILL PAY</option>
    <option value="DEBIT">DEBIT</option>
    <option value="HEALTH CARE DEBIT">HEALTH CARE
    DEBIT</option>
    <option value="HELOC">HELOC</option>
    <option value="VISA DEBIT">VISA DEBIT</option>
    <option value="MASTERCARD DEBIT">MASTERCARD
    DEBIT</option>
    <option value="PRE-PAID DEBIT">PRE-PAID
    DEBIT</option>
    <option value="VISA">VISA</option>
    <option value="MASTERCARD">MASTERCARD</option>
    </select> </td>
    <td align="center"><input name="Cards3" type="text"
    id="Cards3" size="10" maxlength="10"></td>
    </tr>
    <tr>
    <td height="32" align="center"><input name="BinA4"
    type="text" id="BinA4" size="15"
    maxlength="15"></td>
    <td align="center"><select name="select3"
    id="select3">
    <option selected>Select Card Type</option>
    <option value="ATM">ATM</option>
    <option value="BILL PAY">BILL PAY</option>
    <option value="DEBIT">DEBIT</option>
    <option value="HEALTH CARE DEBIT">HEALTH CARE
    DEBIT</option>
    <option value="HELOC">HELOC</option>
    <option value="VISA DEBIT">VISA DEBIT</option>
    <option value="MASTERCARD DEBIT">MASTERCARD
    DEBIT</option>
    <option value="PRE-PAID DEBIT">PRE-PAID
    DEBIT</option>
    <option value="VISA">VISA</option>
    <option value="MASTERCARD">MASTERCARD</option>
    </select> </td>
    <td align="center"><input name="Cards4" type="text"
    id="Cards4" size="10" maxlength="10"></td>
    </tr>
    <tr>
    <td height="32" align="center"><input name="BinA5"
    type="text" id="BinA5" size="15"
    maxlength="15"></td>
    <td align="center"><select name="select4"
    id="select4">
    <option selected>Select Card Type</option>
    <option value="ATM">ATM</option>
    <option value="BILL PAY">BILL PAY</option>
    <option value="DEBIT">DEBIT</option>
    <option value="HEALTH CARE DEBIT">HEALTH CARE
    DEBIT</option>
    <option value="HELOC">HELOC</option>
    <option value="VISA DEBIT">VISA DEBIT</option>
    <option value="MASTERCARD DEBIT">MASTERCARD
    DEBIT</option>
    <option value="PRE-PAID DEBIT">PRE-PAID
    DEBIT</option>
    <option value="VISA">VISA</option>
    <option value="MASTERCARD">MASTERCARD</option>
    </select> </td>
    <td align="center"><input name="Cards5" type="text"
    id="Cards5" size="10" maxlength="10"></td>
    </tr>
    <tr>
    <td height="32" align="center"><input name="BinA6"
    type="text" id="BinA6" size="15"
    maxlength="15"></td>
    <td align="center"><select name="select5"
    id="select5">
    <option selected>Select Card Type</option>
    <option value="ATM">ATM</option>
    <option value="BILL PAY">BILL PAY</option>
    <option value="DEBIT">DEBIT</option>
    <option value="HEALTH CARE DEBIT">HEALTH CARE
    DEBIT</option>
    <option value="HELOC">HELOC</option>
    <option value="VISA DEBIT">VISA DEBIT</option>
    <option value="MASTERCARD DEBIT">MASTERCARD
    DEBIT</option>
    <option value="PRE-PAID DEBIT">PRE-PAID
    DEBIT</option>
    <option value="VISA">VISA</option>
    <option value="MASTERCARD">MASTERCARD</option>
    </select> </td>
    <td align="center"><input name="Cards6" type="text"
    id="Cards6" size="10" maxlength="10"> </td>
    </tr>
    </table>
    </div>

    3 were using <script> instead of
    <script Language="JavaScript" type="text/javascript">
    3 were nothing more then
    Width="30%" inside of <TD>, which DW placed there
    I removed all errors and it is now valid code
    Same result.... Crash and burn
    I uploaded the updated page
    http://www.kujawas.net/wordform.txt
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > You have a number of validation errors on that page.
    >
    > The error you are getting is often caused when DW finds
    an error - any
    > error - on your page. Can you address those first?
    >
    > --
    > 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
    > ==================
    >
    >
    > "Rev. Mike" <[email protected]> wrote in
    message
    > news:[email protected]...
    > > will do
    > >
    http://www.kujawas.net/wordform.txt
    > >
    > > since it is an asp page I changed the
    > > ext so that the raw page is preserved.
    > >
    > >
    > >
    > > "Murray *ACE*"
    <[email protected]> wrote in message
    > > news:[email protected]...
    > >> Would it be possible to upload the unzipped
    file, please?
    > >>
    > >> --
    > >> 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
    > >> ==================
    > >>
    > >>
    > >> "Rev. Mike" <[email protected]> wrote in
    message
    > >> news:[email protected]...
    > >> > here is the file
    > >> >
    http://www.kujawas.net/wordform.zip
    > >> >
    > >> > here is a video of the crash
    > >> >
    http://www.kujawas.net/dwcrash.wmv
    > >> >
    > >> >
    > >> >
    > >> > "Murray *ACE*"
    <[email protected]> wrote in message
    > >> > news:[email protected]...
    > >> >> You can upload it and post a link to
    it, no?
    > >> >>
    > >> >> --
    > >> >> 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
    > >> >> ==================
    > >> >>
    > >> >>
    > >> >> "Rev. Mike" <[email protected]>
    wrote in message
    > >> >>
    news:[email protected]...
    > >> >>> Guess I was to quick to post it
    was okay
    > >> >>> Something definitely flakey here.
    > >> >>>
    > >> >>> I tried the file on several DW
    machines
    > >> >>> on-site and off same issue.
    > >> >>>
    > >> >>> unfortunately I can't post the
    file, it is over 10K
    > >> >>>
    > >> >>>
    > >> >>> "Rev. Mike"
    <[email protected]> wrote in message
    > >> >>>
    news:[email protected]...
    > >> >>>> Hmmm,
    > >> >>>> It is now behaving correctly.
    > >> >>>>
    > >> >>>> The client I am contracting
    with just placed
    > >> >>>> a drive encryption client on
    the machines here.
    > >> >>>> That was probably the culprit
    as it was encrypting
    > >> >>>> the local hard drives.
    > >> >>>>
    > >> >>>> Since I last posted, it has
    not done the nasty
    > >> >>>>
    > >> >>>>
    > >> >>>>
    > >> >>>> "Murray *ACE*"
    <[email protected]> wrote in message
    > >> >>>>
    news:[email protected]...
    > >> >>>>> Nope. Can't imagine what
    the problem is. I have never seen
    > > something
    > >> >>>> like
    > >> >>>>> that happen that wasn't
    somehow related to a horked installation
    or
    > >> >>>>> some
    > >> >>>>> other external factor.
    > >> >>>>>
    > >> >>>>> --
    > >> >>>>> 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
    > >> >>>>> ==================
    > >> >>>>>
    > >> >>>>>
    > >> >>>>> "Rev. Mike"
    <[email protected]> wrote in message
    > >> >>>>>
    news:[email protected]...
    > >> >>>>> > Any ideas here?
    > >> >>>>> >
    > >> >>>>> >
    > >> >>>>> >
    > >> >>>>> > "Rev. Mike"
    <[email protected]> wrote in message
    > >> >>>>> >
    news:[email protected]...
    > >> >>>>> >> Wrote to soon,
    > >> >>>>> >>
    > >> >>>>> >> One page open
    > >> >>>>> >> changing from
    block to none and the attached gif's happened.
    > >> >>>>> >>
    http://www.kujawas.net/dw1.gif
    > >> >>>>> >>
    http://www.kujawas.net/dw2.gif
    > >> >>>>> >>
    > >> >>>>> >> DW3.gif shows the
    layout
    > >> >>>>> >>
    http://www.kujawas.net/dw3.gif
    > >> >>>>> >>
    > >> >>>>> >> The checkbox "B"
    is used to hide or show one or two
    > >> >>>>> >> of three div's
    depending on if it is checked
    > >> >>>>> >>
    > >> >>>>> >> The arrow "A"
    shows the area I change if I want to hide
    > >> >>>>> >> this in the
    display. I want to display it in design view but
    > >> >>>>> >> when
    > >> >>>>> >> I am ready to
    save the page, changing the value to none will
    > >> >>>>> >> and then clicking
    in Design view will kill DW8
    > >> >>>>> >>
    > >> >>>>> >> can duplicate
    everytime on more than one machine, so it is not
    > >> >>>>> >> a resource
    issue..
    > >> >>>>> >>
    > >> >>>>> >>
    > >> >>>>> >> "Rev. Mike"
    <[email protected]> wrote in message
    > >> >>>>> >>
    news:[email protected]...
    > >> >>>>> >> > When
    switching from none to display and vise-versa;
    > >> >>>>> >> >
    > >> >>>>> >> > When I have
    more than 5 documents opened, the crash occurs.
    > >> >>>>> >> > If I have
    the page and the CSS sheet the page references
    open,
    > >> >>>>> >> > the crash
    occurs.
    > >> >>>>> >> >
    > >> >>>>> >> > One page
    open No crash..
    > >> >>>>> >>
    > >> >>>>> >>
    > >> >>>>> >
    > >> >>>>> >
    > >> >>>>>
    > >> >>>>>
    > >> >>>>
    > >> >>>>
    > >> >>>
    > >> >>>
    > >> >>
    > >> >>
    > >> >
    > >> >
    > >>
    > >>
    > >
    > >
    >
    >

  • Display:block ie6

    Hi all, can anyone enlighten me as to why display block works
    fine in all
    browsers except older ie ones on this site
    http://www.crackerjackpromotions.co.nz/2007/index3.php
    Look at the middle nav in ie6 and it works on the first link
    Corporate but
    not on any of the other links and i can't see why that would
    be.
    Thanks,
    Karen

    Sinclair - helping me out is becoming part of your daily
    routine it seems
    :-) I'm very appreciative!
    Now can you tell me why your fix works?? Why did I get the
    display block on
    corporate only?
    I'm only just getting to grips with the css layout stuff, so
    all the extra
    bits needed for various browsers seems mind boggling. This is
    a conditional
    comment yes?
    Thanks again!
    Karen
    "djinn" <[email protected]> wrote in
    message
    news:fe0ckc$f3h$[email protected]..
    > Karenj wrote:
    >> Hi all, can anyone enlighten me as to why display
    block works fine in all
    >> browsers except older ie ones on this site
    >>
    http://www.crackerjackpromotions.co.nz/2007/index3.php
    >>
    >> Look at the middle nav in ie6 and it works on the
    first link Corporate
    >> but not on any of the other links and i can't see
    why that would be.
    >>
    >
    >
    > Karen - try this CC in the head of your doc...
    >
    > <!--[if IE 6]>
    > <style>
    > #wrapper2midnav a {height: 1%;}
    > </style>
    > <![endif]-->
    >
    > HTH
    >
    > --
    > chin chin
    > Sinclair

  • Block Planning Display block options eg Percent of block utilised and Qtys?

    Any hints how to display block quantities and percent utilised in PPDS area?
    I have managed so far to get the following for blocks that cross between months.
    1. Resource table. (/SAPAPO/RPT - Resource Planning Table )Can highlight both columns that the specific block is in, click "show operations", get the operations to show in the bottome screen, and the FILTER on the specfic dates to get the block quantities.
    This works to get a block quantity but would need to do a slow manual process for every block!
    2. Receipts View (/SAPAPO/RRP4). Can set up a visualisation profile which shows my characteristic in a column in the report, and then I can select a SINGLE resource from the front selection and get a listing of the quantities from that single resource, and then with filters on dates and/or characteristic, I can get the quantities.
    But this is slow and manual per resource.
    3. Detailed scheduling board shows VISUALLY whether blocks look full or not, but I cant find any way of getting any block quantities or percent complete from this view.
    Ideally, I want a way I can download all resource quantities and block quantities and then determine percent utilized in the blocks and put alerts on this to show which blocks are under-utilised.
    Any ideas????

    Aha. Found it.
    in the DS Planning board.
    click an order on block and then EDIT/SELECT/ALL FOR SAME BLOCK
    then
    EXTRAS / EVALUATION / EXTENDED OPERATIONS LIST - this gives all the quantities for selected block
    then
    EXTRAS / EVALUATION / RESOURCE UTILIZATION - select blocks and get percent utilisation for blocks

  • How do I write javascript for a text block to extract name from signature block?

    Hello,
    I've created a training certificate that the trainee has to sign electronically. To prevent someone from simply putting in their friends name in there and saving it; to send to their friend and help them from having to take the training and quiz I would like to write a javascript in the text block that would extract the name from their signature block and autofill the name in the text block. Is there a way to do this?

    You would have to use JavaScript to access the signature field object and then you can access the various properties of the signature depending upon the certificate or method for signing.
    signatureInfo
    console.show();console.clear();
    // Get particular info;
    var f = this.getField("Signature1");
    // uses the ppklite sig handler;
    var Info = f.signatureInfo();
    // Some standard signatureInfo properties;
    console.println("name = " + Info.name);

  • What is inserting the following code onto pages " div id="bikatoc" style="display: none;" a class="control" Close /a div class="toc" ul li class="toc-h2

    I am doing web development and when working with the wordpress dashboard tiny mce, each time I hit the update button the following piece of code is inserted into the page I am working on.
    <pre><nowiki><div id="bikatoc" style="display: none;"><a class="control">Close</a>
    <div class="toc">
    <ul>
    <li class="toc-h2"><a href="#toc0">Just for the Health of it</a></li>
    <li class="toc-h2"><a href="#toc1">Wild Yukon River Salmon</a></li>
    </ul>
    </div>
    </div>
    </nowiki></pre>
    Something is scanning the h1-h6 tags and creating a table of contents and inserting it into the page. This also happens when I use firebug on other random pages while using firefox.
    I have tried several other browsers to determine if this is a wordpress issue, but this only happens in firefox. It also only happens when I make changes with firebug in firefox. Using firebug lite in chrome did not cause this problem.
    I have been looking all over to figure out what is going on and why the is happening. It is making development near impossible and is forcing me to use a different browser (which I don't enjoy at all)
    Any help you can give me would be wonderful.
    Thank you for your help

    Is it always hidden with display:none?
    One standard diagnostic step is to try Firefox's Safe Mode to see whether it is caused by a custom setting or add-on.
    First, I recommend backing up your Firefox settings in case something goes wrong. See [https://support.mozilla.com/en-US/kb/Backing+up+your+information Backing up your information]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, restart Firefox in [http://support.mozilla.com/kb/Safe+Mode Safe Mode] using
    Help > Restart with Add-ons Disabled
    In the Safe Mode dialog, do not check any boxes, just click "Continue in Safe Mode."
    If the inserts stop, this points to an add-on as the problem. Figuring out which one it is would be the next step. (If the TOC is always hidden, perhaps it is something SEO-related.)

  • Display blocked document SPL - unable to to SPL check

    Dear friends,
    I have a blocked sales document in "Display Blocked Documents" in SPL area. I can search on the reference number and i got one record. I selected that and try to "Start SPL screening". It says "Unable to select any data (see long text)". Can you please tell me what could be the problem.
    thanks in advance.
    Thiru...
    Edited by: thirumal gunukula on Mar 5, 2009 2:54 AM

    Hi Thiru,
    please check your customizing:
    TA spro->GTS -> Compliance -> SPL service- > Control setting for SPL -> Document screening strategy.      
    You can select if you want to rescreen all addresses or only changed addresses.
    I assume that the address was not changed manually but system is defined in that way...

  • Js load xml element - style match from another file

    Hi all
    I got a ID file with a placed xml file, all styles are prepaired.
    Now I would like to load the xml element <-> style match from a given template file, where I prepaired all the matches.
    I would imagine this is a bit like loading the styles or the swatches from another file, but have not found any code samples yet.
    Can anybody help?
    Thanks
    Romano

    js for Structure; XML; Map Tags to Styles...
    I don't think that is what I am looking for and I feel I must asked this question in an unclear way...
    so I started a new discussen with the above heading.
    Thank you anyway.
    Romano

  • Display Blocked BPs-Can we see all detailed analyses in a one step process?

    Hi
    Before releasing any BPs blocked by the system our compliance users check the details of the blocks.
    Currently it is a 2 step process (after they are in the detailed screen of the Display Blocked Business Partners menu):
    1 u2013 Double click on the name of the blocked BPs.
    2 u2013 Click on icon u201CDisplay All Detailed Analysesu201D to show detailed analysis of all hits.
    Is there any way we can make it a one step process and see all details analysis immediately after selecting the blocked BPs?
    SAP Compliance Management -> Sanctioned Party List Screening -> Monitoring -> Business Partner -> Display Blocked Business Partners.
    Thanks!

    We can go to the SPL BP blocked list from the path you have mentioned. In the list select a line item and at the header there is partner. If you click on that you can see detailed analysis in there. Just click on it and it would be one step for you. But from here you can't release.

  • Flash video causes my Mac mini to crash displaying blocks of stripes

    As you can see from the picture below, flash video sometimes (often though) causes my Mac mini with Intel Graphics HD 3000 crashes while displaying blocks of stripes and repeating "tick" noise. I believe it just plays audio data in a buffer repeatedly at that moment.
    It looks to me that it failed in decoding the video. Probably it can be due to mal-formated encoding, but after rebooting if I move the play position to the same spot, it plays there correctly. So, probably somehow when there is somewhat wrong encoded data filled in a buffer to decode but there is some non-allowed operation is processed. ( like divide-by-zero. I don't mean that this one is due to divide-by-zero. ) Can be somewhat related to DCT block....
    Flash plugin installed on my Mac : The latest Flash plugins for Mac
    Mac Mini with Intel HD graphics 3000. ( last year's model )
    is this going to be fixed soon? Probably this is a bug which is already being traced?

    I haven't seen this occur before.  We're going to need some additional info from you.  Please see this tech doc for some simple troubleshooting steps (in particular, try the HTML5 vs. Flash video tests and try disabling Flash Player's hardware acceleration).  The doc also explains what information we'll need and how you can report the issue to us.
    Troubleshoot, report Flash Player video playback issues
    Thanks,
    Chris

Maybe you are looking for

  • BLOB Column with PDF docs

    I already read a different ways to extract the PDF docs from oracle table and open it through forms. All of them with java classes, webutil integration and dbms_lob. But, if I need an other way to show it (select the column and open it) through the f

  • Email is not working in my Nokia Asha 501

    I have a nokia asha 501 and there is mail. But we cant read the mail. What is the use of giving us an app which not even useful. Moderator's Note: We have changed the title into a subject-related title. This is to keep the forum organized and let oth

  • Popup Overlap Buttons

    I've created a 18 button pop-up menu for a project that I'm working on. None of the buttons are overlapping in Photoshop yet Encore says that there are overlapping buttons. The red overlapping borders are showing that the bottom of the buttons are ov

  • I have a problem with assistive touch after i restart or turn on my ipad 4 (ios6.1.3)

    when i open assistive touch and then i turn off and turn on (or restart) my ipad4  features "gestures" is not work untill i cloes assistive touch and open it again .it bugs ?

  • How do I prevent color streaking outside of an adjustment layer?

    When I load a selection and create and adjustment layer, the hue and saturation effects areas outside the layer. You can see the red streaking below. How do I avoid this?