CFGRID HTML AJAX doesn't work in IE5.5

It would seem there is a problem using an editable grid in
IE5.5. If you use dropdowns as part of your editable HTML AJAX
CFGRID.
To reproduce make a grid and set it as editable.
Set the values and valuesdisplay attributes on a gridcolumn
and make the column selectable.
Now try and view the grid in IE 5.5.
You just get the dropdown for the slectable columna and a
Javascript error. LIne 26 char 288 Object doesn't suport this
property or method.
Stop the column being Selectable and its fine.
Make the column selectable but remove the values and
valusdisplay attributes and its also fine for editing.
Sounds like a bug to me.
If anyone has any idea how to fix this. I'm guessing its
buried in one of the many Javscript files that are loaded when
using AJAX controls then I'd be very grateful.
many thanks
Steve

In which system (DEV, QA or PROD) are your trying to extract the delta. Have you checked if any transactions have been posted in the source system.
Regards

Similar Messages

  • Servlet (html code doesn't work correctly on IE6)

    Hi, i've a problem with code html on servlet...my page works correctly with firefox but on IE6 i've a lot of bugs about table alignment and CSS looks like not exist . This is code that doesn't work:
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
            PrintWriter out = response.getWriter();
            String context = request.getContextPath();
            response.setContentType("text/html");
            out.println("<html>");
            out.println("<head>");
            out.println("<title>RisultatoRicerca Servlet</title>");
            out.println("<link rel='stylesheet' type='text/css' href='"+context+"/css/cd.css'>");
            out.println("<script>");
            out.println("</script>");
            out.println("</head>");
            out.println("<body>");
            DbUtility utility = new DbUtility();
            GestioneCd gestioneCd =new GestioneCd();
            GestioneNoleggio gestioneNoleggio=new GestioneNoleggio();
            Cd cd = newCd();
    cd.setArgomento(request.getParameter("argomento")==null?"":request.getParameter("argomento"));
            cd.setEtichetta(request.getParameter("etichetta")==null?"":request.getParameter("etichetta"));
            cd.setUbicazione(request.getParameter("ubicazione")==null?"":request.getParameter("ubicazione"));
            int valoreRadio=request.getParameter("attivo")==null?0:Integer.parseInt(request.getParameter("attivo"));
            if (valoreRadio==1){
                cd.setAttivo(true);
            }else if (valoreRadio==2){
                cd.setAttivo(false);
            Connection con = null;
             LinkedList cdFromRisultatoRicerca=new LinkedList();
            try{
                con=utility.getConnection();
                cdFromRisultatoRicerca=gestioneCd.getRisultatoRicercaCd(con, cd,valoreRadio);
                ListIterator iterator = cdFromRisultatoRicerca.listIterator();
                int id=0;
                String argomento="";
                String etichetta="";
                String ubicazione="";
                out.println("<form name='visualizza' method='post'");
                out.println("<table align='center'>");  // NOT WORKS , table alignment not respected on IE6
                out.println("<tr><td colspan='9' align='center'></td></tr>");
                out.println("<tr><td colspan='9' align=center class='titolo'>Risultato ricerca</td></tr>");
                out.println("<tr>");
                out.println("   <td align='left' class='titolo'>Id</td>");
                out.println("   <td align='left' class='titolo'>Argomento</td>");
                out.println("   <td align='left' class='titolo'>Etichetta</td>");
                out.println("   <td align='left' class='titolo'>Ubicazione</td>");
                out.println("   <td align='center' class='titolo'>N.copie</td>");
                out.println("   <td align='center' class='titolo'>Disponibili</td>");
                out.println("   <td align='left' class='titolo'>Attivo</td>");
                out.println("   <td class='titolo'> </td>");
                out.println("   <td class='titolo'> </td>");
                out.println("</tr>");
                out.println("<tr>");
                out.println("   <td colspan='7' align='center'>");
                out.println("       <HR width='100%'>");
                out.println("   </td>");
                out.println("   <td> </td>");
                out.println("   <td> </td>");
                out.println("</tr>");
                int copie=0;
                while (iterator.hasNext()){
                    cd=(Cd)iterator.next();
                    out.println("<tr>"); // NOT WORKS, on IE6 lines appears not in a table
                    out.println("   <td>"+cd.getId()+"</td>");
                    out.println("   <td>"+cd.getArgomento()+"</td>");
                    out.println("   <td>"+cd.getEtichetta()+"</td>");
                    out.println("   <td>"+cd.getUbicazione()+"</td>");
                    out.println("   <td align='center'>"+cd.getCopie()+"</td>");
                    int copieNoleggiate=gestioneNoleggio.getCopieNoleggiate(con,cd);
                    int copieDisponibili=(cd.getCopie())-(copieNoleggiate);
                    out.println("   <td align='center'>"+copieDisponibili+"</td>");
                    out.println("   <td align='center'>");
                    if (cd.isAttivo()==true){
                        out.println("<img src="+context+"/immagini/pulsanteverde2.gif>");
                    }else{
                        out.println("<img src="+context+"/immagini/pulsanterosso2.gif>");
                    out.println("   </td>");
                    out.println("   <td>");
                    out.println("       <a href='javascript:;' onclick=\"javascript:window.open('"+context+"/servlet/ModificaCd?id="+cd.getId()+"','Modifica','width=500,height=300,top=200,left=300');\" target='main'>Modifica</a>");
                    out.println("   </td>");
                    if (cd.isAttivo()){
                        out.println("   <td>");
                        out.println("       <a href='javascript:;' onclick=\"javascript:window.open('"+context+"/servlet/ConfermaDisattiva?id="+cd.getId()+"','Disattiva','width=300,height=70,top=250,left=350');\" target='main'>Disattiva</a>");
                        out.println("   </td>");
                    }else{
                        out.println("   <td>");
                        out.println("       <a href='javascript:;' onclick=\"javascript:window.open('"+context+"/servlet/ConfermaAttiva?id="+cd.getId()+"','Attiva','width=300,height=70,top=250,left=350');\" target='main'>Attiva</a>");
                        out.println("   </td>");
                    out.println("</tr>");
                    out.println("<tr>");
                    out.println("   <td colspan='7' align='center'>");
                    out.println("       <HR width='100%'>");
                    out.println("   </td>");
                    out.println("   <td> </td>");
                    out.println("   <td> </td>");
                    out.println("</tr>");
                out.println("<tr>");
                out.println("   <td colspan='9' align='center'>");
                out.println("       <a href='"+context+"/jsp/index.jsp' target='main'>Torna Home</a>");
                out.println("   </td>");
                out.println("</tr>");
                out.println("</table>");
                out.println("</form>");
            }catch (SQLException e){
                out.println(e.getMessage());
                out.println(e.getSQLState());
            }finally{
                try {utility.closeConnection(con);} catch (Exception e) {con=null;}
            out.println("</body>");
            out.println("</html>");
            out.close();
        }And this is CSS :
    BODY {
            background : #CCCCCC ;
            color : #000000 ;
            font-family  : sans-serif ;
            font-size : 13px ;
    A {
            color : #D2691E ;
            font-weight : bold ;
            font-family : sans-serif ;
            font-size : 12px ;
            text-decoration : none ;
    TABLE {
            background : #CCCCCC ;
            color : #000000 ;
            font-family : sans-serif ;
            font-size : 13px ;
            border : 1px ;
    .titolo {
            background-color : #CCCCFF ;
            font-family : sans-serif ;
            color : #000000 ;
            font-size : 13px ;
            font-style : normal ;
            font-weight : bold ;
    }Thx for your attenction :D

    out.println("<form name='visualizza'
    'visualizza' method='post'");
    out.println("<table align='center'>");
    'center'>"); // NOT WORKS , table alignment not
    respected on IE6You're missing a > at the end of the form start tag.

  • DPS HTML Content doesn't work anymore

    Hello,
    a few weeks ago, I created two Single-Folio-Apps. In these apps I have placed HTML content in InDesign with the command "Insert HTML". I so placed <textarea>-fields among others. I set the HTML content to Auto Play and allowed user interaction. The folio app worked well and it was possible to write text into the textfields on the iPad and also on the Samsung Galaxy Tab 10.1N (in the Adobe Content Viewer). On Monday I built the apps again, because I wanted to add a new iPad device for testing the app. And now it doesn't work anymore! The HTML content isn't even executed in the Folio! I placed another HTML content in InDesign - a simple text with a <strong>-tag - only for testing. The result: it also isn't executed! I only can see a black box on the page where this html content should be! How can this be? Further the app crashes always! How can I solve this problem? I really need help, because I'd like to present the apps to a client - actually this already should have happened! Please, can anyone help me?
    Thank you in advance!
    With best regards,
    Verri

    Did you install the updated tools? There were issues with the original v25 release that affected HTML and buttons.
    Bob

  • IWeb HTML snippet doesn't work hosted outside MobileMe

    Hi
    I created a site with iWeb and used to HTML snippets.
    When I publish the site on MobileMe all works fine
    When I publish the site with my Dutch Web hosting company, those HTML components won't work.
    The vistor to the page finds a error message instead of the HTML widget:
    Not Found
    The requested URL /test/Welkom_files/widget3_markup.html was not found on this server.
    Apache/2.0.52 (Red Hat) Server at www.knipdoor.nl Port 80
    Does anyone know what's wrong and how to solve the issue?
    Look forward
    Henk, NL

    Does anyone know what's wrong and how to solve the issue?
    It's clearly written :
    The requested URL /test/Welkom_files/widget3_markup.html was not found on this server.
    So go to your server and see if it's really missing.
    And if you added/deleted/changed HTML Snippets, iWeb creates new widget-markup files with new sequence numbers. When you load the webpage, some widget-markup files might not be present anymore because of these changes.
    Clear the cache of the browser and reload the webpage.

  • Help - SeamlessTabbing change to html - still doesn't work??

    writeDocument('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="790" height="586" ID="Captivate1">'+
      '<param name="movie" value="repo_training2_skin.swf">'+
      '<param name="quality" value="high">'+
      '<param name="loop" value="0">'+
      '<embed src="repo_training2_skin.swf" width="790" height="586" loop="0" quality="high" pluginspage="http://www.adobe.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false"></embed>'+
      '<param name="SeamlessTabbing" value="false">'+  
      '</object>');
    //-->
    </script>
    Hello, I am working on a Captivate project with Tabbing, made the change as suggested - and the SWF still defaults to the web browser's tabbing function.  I pasted the pertinent section in notepad above - can anyone see what I am doing wrong?  I know I got this to work before.  New to Captivate and really need an assist!
    Thanks much, Kelly

    Hi there
    Try amending your code as follows:
    writeDocument('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7, 0,0,0" width="790" height="586" ID="Captivate1">'+
      '<param name="movie" value="repo_training2_skin.swf">'+
      '<param name="quality" value="high">'+
      '<param name="SeamlessTabbing" value="false">'+
      '<param name="loop" value="0">'+
      '<embed src="repo_training2_skin.swf" width="790" height="586" loop="0" quality="high" pluginspage="http://www.adobe.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false"></embed>'+
      '</object>');
    //-->
    </script>
    Note that I relocated where it was inserted. You had it following the closing embed tag, which I believe was causing it not to work. I'm thinking it needs to be within the other param statements. I tested and it seems to work fine on my own PC. At least in IE. In Firefox it doesn't seem to be necessary. Tabbing just seems to remain in the Flash Object on the page.
    Cheers... Rick
    Click here for Adobe Certified Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Image Link in HTML Help Doesn't Work (Works Fine in PDF)

    Using TCS V1.3 with the latest patches.
    Single source project with FM to RH -- output to HTML Help.
    I want to create a hyperlink over an image that, when clicked, opens a new topic within the same .chm file.
    Here's what I did:
    1. Imported image by ref. into FM.
    2. Created text box over image.
    3. Created a hypertext link (Specify Named Destination) at the beginning of the destination heading/topic.
    4. Created a hypertext link (Jump to Named Destination) inside the text box.
    5. Tested link in FM - works fine.
    6. Tested link in PDF - works fine.
    7. Tested in .chm - link doesn't exist, just the image.
    Have I missed a step?

    Hello,
    Its because Spry attaches event listeners on the "tabs / buttons / handles" of the accordion, these event listeners are set so they prevent default events.
    There a few ways to solve it.
    - Add a onclick event to your <a> elements that does this:
    onclick="window.location = this.href; return true;"
    - Or you could add another event listener that does it for you, so you don't have to bother adding onclick="" to your elements
    - Or edit the SpryAccordion.js. On line 248 to 276 you will find:
    if (e.preventDefault) e.preventDefault();
    else e.returnValue = false;
    if (e.stopPropagation) e.stopPropagation();
    else e.cancelBubble = true;
    return false;
    Replace it with:
    if (e.stopPropagation) e.stopPropagation();
    else e.cancelBubble = true;
    return true;
    Hopes this helps,

  • GPO for custom html wallpaper doesn't work on Windows 7

    Hi Guys,
    I have 3 organizations with Windows 2003 server and many clients (Win XP/Win 7).
    I created a new GPO to set a active wallpaper to the OU and set there html file to be the wallpaper.
    It’s works excellent on Win XP clients, But in Win 7 clients I recieved black wallpaper instead.
    I even tried to set JPG\BPM wallpaper to check the GPO – and it’s work great on Win XP and Win 7 both !
    The problem is only with html wallpaper in Win 7 clients.
    Someone have an idea?
    Thank you !

    Hi Yaakov-l,
    I agree with Denis. Active Desktop is not supported in Windows Vista (including Windows 7). Since, Windows
    Vista has replaced the Active Desktop with Windows Sidebar (Called Windows Desktop Gadgets starting with Windows 7). This seems to be the root reason why html wallpaper isn’t applied to Windows 7 clients correctly.
    In Windows 7 client, please open Registry Editor and navigate to: HKEY_CURRENT_USER\Control Panel\Desktop\WallPaper.
    Then create a String Value to set wallpaper and then check if can help to solve this issue. You can apply the registry setting to multiple computers via GPP (In GPME: Preference->Windows Settings-> Registry).
    Please note: before modify any regsitry, please back up. It will help us to avoid some unexpected issues.
    If anything I misunderstand, please don't hesitate to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • Trouble adding GoodSearch HTML search box: HTML widget doesn't work...

    I'm having trouble adding a GoodSearch search engine box to my site. I've tried the HTML widget thing and also editing the code after it publishes to a folder. Each time, I get a non-functional search box as my end result.
    The GoodSearch tech person says that iWeb might be stripping out or corrupting the Javascript code...interestingly enough, a Google search box works just fine with post code tweaking.
    Any help would be greatly appreciated!
    Here is a link to my test site where the search box (upper right corner) is non-functional: http://web.mac.com/toesproductions/KQ/Home.html
    This is the GoodSearch code:
    <script type="text/javascript">
    function GoGoodSearch_4()
    var charityid = 870537;
    var siteURL = "koreanquarterly.org/home.html";
    var openNewWindow = true;
    var searchtype = document.getElementsByName("goodsearchsearchtype4");
    var baseurl = "http://www.goodsearch.com/Search.aspx";
    var keywordsbox = document.getElementById("goodsearchkeywords4");
    if (typeof keywordsbox != "undefined")
    var keywords = escape(keywordsbox.value);
    var url = baseurl + "?Keywords=" + keywords;
    if (charityid > 0)
    url += "&CharityID=" + charityid;
    if (searchtype[1].checked)
    url += "&Site=" + escape(siteURL);
    url += "&Partner=goodsearch_syn";
    url += "&typetag=" + escape(siteURL);
    if (openNewWindow)
    window.open(url,'SearchResults','height=700,width=900,location=1,status=1,toolba
    r=1,scrollbars=1,resizable=1');
    else
    window.location.href = url;
    function CatchEnter_4(e)
    var key1 = "13";
    var x = "";
    if (document.all)
    var evnt = window.event;
    x = evnt.keyCode;
    else
    x = e.keyCode;
    if (x == key1)
    document.getElementById("goodsearchsubmit4").click();
    return false;
    else
    return true;
    </script>
    <label for="goodsearchkeywords4" style="display:none;">GoodSearch keywords to
    search for</label>
    <input
    type="text"
    name="goodsearchkeywords4"
    id="goodsearchkeywords4"
    onkeydown="return CatchEnter_4(event);"
    style="width:230px;background-image:url('http://www.goodsearch.com/gfx/titleya
    hoo_background.gif');background-repeat:no-repeat;margin-bottom:8px;"
    onclick="this.style.backgroundImage='url(http://www.goodsearch.com/_gfx/spacer.g
    if)';"
    onfocus="this.style.backgroundImage='url(http://www.goodsearch.com/_gfx/spacer.g
    if)';"
    />
    <input
    type="button"
    name="goodsearchsubmit4"
    id="goodsearchsubmit4"
    value="Search"
    onclick="GoGoodSearch_4();"
    style="margin-bottom:8px;font-family:Arial,Helvetica;font-size:11px;"
    />
    <input
    type="radio"
    name="goodsearchsearchtype4"
    value="web"
    /> Web
    <input
    type="radio"
    name="goodsearchsearchtype4"
    value="site"
    /> This Site
    Message was edited by: Andrea Lee

    iWeb does nothing to code you add in the HTML Snippet.
    Actually, iWeb does not care what you put there. It blindly saves the code in a webpage.
    http://web.mac.com/toesproductions/KQ//Homefiles/widget0markup.html
    So, now you have no excuse.
    Just edit the code in the file above until it works.
    After that, copy the code in the BODY of the page and paste in into the HTML Snippet. Otherwise it will overwrite the webpage next time you publish.

  • /CreativeSuiteSDK/docs/csawlib/index.html Documentation Doesn't Work in InternetExplorer 8 on Win7

    For CS5 SDK v1.5 on Win7 with InternetExplorer 8
    Hi all,
    If I try to view the CS5 v1.5 documentation file /CreativeSuiteSDK/docs/csawlib/index.html, I get a blank screen with a frame divider (between what should have been the left-hand Packages List and the right-hand class details panel). Firefox works fine. Also, the \CreativeSuiteSDK\docs\csxslib\index.html file works perfectly well in Internet Explorer.
    Anyone else suffering from this?
    TIA,
    mlavie

    As per the release notes, the issue is fixed in 8.0.1.242.
    Adobe Captivate Help | Adobe Captivate 8 patch
    You can update if you don't have this version and check.
    Sreekanth

  • Struts tag html:link doesn´t work in Safari

    *Very important question for our company!*
    I´m trying to optimize our web application( www.seb.de) for Safari browser.
    The problem is that Safari don´t display Struts <html:link> on the page. On the page should be a button "delete" at the right side.
    Button Code:
    <html:link>
    href="DeleteMail"
    newFlow="true"
    styleClass="a_delete"
    bundle="<%=SebMailBoxConstants.BUNDLESEBMAIL%>"
    titleKey="Delete"
    </html:link>
    There is a styleClass "a_delete", which this button uses:
    a.a_delete
    background-image: url('icon/icon_delete.gif');
    background-repeat: no-repeat;
    width: 12px;
    padding-right: 12px;
    margin-top: 2px
    Please help me to solve this problem.
    Best regards,
    Sergei.
    SEB Group.

    same thing here, I've talked to apple twice and no resolution
    if you move the screen up you can usually get the links to work
    also when I do Google searches I can get to the second page of results and then I can go no further

  • Sending HTML mail doesn't work

    Hi experts,
    I'm trying to send an HTML eMail by using function module 'SO_NEW_DOCUMENT_SEND_API1'.
    Without success! When I debug the code, the format os switched from HTM to RAW and I have no clue why.
    Here's my code:
    data objpack like sopcklsti1 occurs  2 with header line.
      data objhead like solisti1   occurs  1 with header line.
      data objbin  like solisti1   occurs 10 with header line.
      data objtxt  like solisti1   occurs 10 with header line.
      DATA ls_doc_send  TYPE sodocchgi1.
      ls_doc_send-obj_name = 'Exp.Auth. Notif.'.
      ls_doc_send-obj_descr = 'Expiring Authentication Notification'.
      ls_doc_send-sensitivty = 'O'.
      ls_doc_send-obj_langu = 'E'.
      DESCRIBE TABLE i_mailtext LINES lv_int_send.
      READ TABLE i_mailtext into lv_last_line INDEX lv_int_send.
      ls_doc_send-doc_size = ( lv_int_send - 1 ) * 255 + STRLEN( lv_last_line ).
      CLEAR objpack-transf_bin.
    *  objpack-transf_bin = 'X'.
      objpack-head_start = 1.
      objpack-head_num   = 0.
      objpack-body_start = 1.
      DESCRIBE TABLE i_mailtext LINES tab_lines.
      objpack-body_num   = tab_lines.
      objpack-doc_type   = 'HTM'.
      objpack-doc_size   = ls_doc_send-doc_size.
      APPEND objpack.
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
        EXPORTING
         document_data                    = ls_doc_send
         document_type                    = 'HTM'
         PUT_IN_OUTBOX                    = 'X'
         commit_work                      = 'X'
    * IMPORTING
    *   SENT_TO_ALL                      =
    *   NEW_OBJECT_ID                    =
        TABLES
         object_header                    = objhead
         object_content                   = i_mailtext
    *     CONTENTS_HEX                     = i_mailtext
    *   OBJECT_PARA                      =
    *   OBJECT_PARB                      =
          receivers                        = i_receiver
       EXCEPTIONS
         too_many_receivers               = 1
         document_not_sent                = 2
         document_type_not_exist          = 3
         operation_no_authorization       = 4
         parameter_error                  = 5
         x_error                          = 6
         enqueue_error                    = 7
         OTHERS                           = 8.
    The parameter i_Mailtext is the prepared HTML document. Do oyu know which HTML elements/tags are mandatory?
    objhead and objbin are not set, should I?
    Thanks and regards,
    Steffen

    Hi,
    try This u ill get some idea ..
    data: maildata   like sodocchgi1.
    data: mailtxt    like solisti1 occurs 10 with header line.
    data: mailrec    like somlrec90 occurs 0  with header line.
    start-of-selection.
      clear:    maildata, mailtxt,  mailrec.
      refresh:  mailtxt, mailrec.
    submit ztestalv02 and return.
    call function 'SO_NEW_DOCUMENT_SEND_API1'
           exporting
                document_data              = maildata
                document_type              = 'HTM'
                put_in_outbox              = 'X'
           tables
                object_header              = mailtxt
                object_content             = mailtxt
                receivers                  = mailrec
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                others                     = 8.
      if sy-subrc = 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    Regards...
    if not let me know.

  • Download HTML DB doesn't work

    I've been trying for a week now.
    This one is new:
    Error ERR-1014 Application not found.
    OK
    application=4755 workspace=10
    Please fix.

    Thanks. The rule was there in my firewall, allowing iTunes. I deleted it and added it again and now it works. Strange thing was that before I could still go to iTunes Store.
    Anyway, the problem is solved now. Thanks a lot.
      Windows XP  

  • CFGRID HTML named target will not open new window

    I'm finally TRYING to make the move to CF8 and honestly I
    love Cold Fusion but I encounter bug after bug without going crazy
    trying to do things. I'd appreciate any guidance here.
    In this case I am trying to switch over from applet CFGRIDS
    to HTML CFGRIDS. Right off the bat all sorts of issues.
    1) CFGRID HTML target does not work as expected. If you put a
    named window in (e.g. gridpopup) you get an error message that it
    doesn't exist. This is not the way the applet grid works in any
    version including CF8. I don't want to allow someone to keep
    opening up window after window in this case. This is a showstopper
    as I have many cases where I need to do this.
    2) A defined checkbox column displays true and false. Since
    this isn't editable I can probably change it to Yes and No but come
    on. This might be because I'm using a bit field in my Sybase
    database ?????? Not sure if it works or doesn't with other field
    types. Works fine with the applet cfgrid
    3) This one can probably be styled away, I don't want the URL
    columns underlined.

    First, I can't believe no one else is encountering this
    problem
    Here's the fix which allows you to use mixed case target
    names and will also open a non-existent target. Someone was very
    lazy when they coded this.
    Locate the cfgrid.js file e.g. ..//CFIDE/scripts/ajax/package
    Find this chunk of code
    if(_2a3){
    _2a3=_2a3.toLowerCase();
    if(_2a3=="_top"){
    _2a3="top";
    }else{
    if(_2a3=="_parent"){
    _2a3="parent";
    }else{
    if(_2a3=="_self"){
    _2a3=window.name;
    }else{
    if(_2a3=="_blank"){
    window.open(encodeURI(url));
    return;
    if(!parent[_2a3]){
    and replace with this chunk of code
    if(_2a3){
    _2a3_LC=_2a3.toLowerCase();
    if(_2a3_LC=="_top"){
    _2a3="top";
    }else{
    if(_2a3_LC=="_parent"){
    _2a3="parent";
    }else{
    if(_2a3_LC=="_self"){
    _2a3=window.name;
    }else{
    if(_2a3_LC=="_blank"){
    window.open(encodeURI(url));
    return;
    }else{
    if(!parent[_2a3]){
    window.open(encodeURI(url),_2a3);
    return;
    if(!parent[_2a3]){

  • My html snippet has only worked for 2 minutes in three months.

    Warning: Long, descriptive story up ahead.
    I bought my macbook pro complete with iLife 08 bundle software in January and eventually I became a little bit more advanced so I wanted to try using "html snippets" in iWeb.
    That's when I discovered it was not working on my iWeb. (I have the latest version of iWeb 08 possible). Also, this is of less concern but my navigation menu is not displaying either-- meaning on the face of my webpages the individual Page Titles are not displaying "Main", "About Me" when I choose "display navigation menu" option from the inspector-- all I get is a big stupid empty space. And yes, I have all the options check to "display this page in my navigation menu" or some such.
    So I drove over to an applestore (which took a whole freaking day of my time) and they opened up software updates in the store. This was around the whole MobileMe thing, so I got that upgrade too. And magically my iWeb's html snippets started working for the first time ever! I almost cried, but let's face it, there are more beautiful and spectacular things in life worth my tears of joy. Anyway, I indeed was really happy because I thought this was going to be the beginning of me being able to html snippet youtube videos directly onto my site and do other such amazing things!
    Then today when I got home, I'm back to the same stupid non-working html snippet feature again!!!!
    I can describe the html snippet issue a little bit: In my non-working html snippet version, a little transparent box appears when I try and open up html snippets... in this little box I can't type anything. How iWeb should work is that this black box should appear where you can type in your code and then a separate little box below the black one works on displaying what you coded.
    One maybe important thing I noticed is that... You know how when you open up iWeb, in the left column by your sites there are/were those blue globe .mac picture? Well, after the MobileMe upgrade in the store (just yesterday actually on the 27th), those blue globes turned into blue squares with white clouds. So I think the conversion from .mac to MobileMe helped fixed my bugs? Because today my html snippets doesn't work again and I'm back to the .mac blue globes. I want those little blue squares with white clouds again if it will fix my issue!!
    HELP, please. Thanks!

    I would look at several things. I'm assuming it shows fully charged after you charge it and that this is a new iphone and not used. Check your location services under Privacy: Location Services for apps that use your location. If you have apps always checking your location it can use power. Turn off any you don't really need. You can always turn them back on.
    Check you wifi settings. Turn off the " Ask to join other Networks". If you are driving down the road it will be looking for other networks to join.
    Turn off any apps running in the background that are not needed.
    Restart your iPhone after you have done this. Hopefully this will improve your battery usage.

  • WebScan doesn´t work with iPhone browser

    The C4780 web interface for scanning is very practical because no driver installation on computer is required for scanning. Just point any web browser to its internal web server, start the scanning process and download the scaned image as a regular element on a web page, all using web standards, right?
    Well, wrong for the iPhone browser.
    For some reason, the C4780 (and probably other HP multifunction firmware) has incomaptible/untested Javascript/HTML that doesn´t work with the iPhone browser.
    On preview action I´m getting a question mark box.
    On scan action - where a new browser window would open on a desktop - I get nothing.
    Please fix that. It could be very useful for me since I can simply scan stuff directly to my iPhone without having to open a computer.
    I also posted this message under Scanning Faxing and copying.
    Thank you,
    Avi

    On the iPhone, go to Settings...Safari...Turn Blocked PopUps off.
    Worked for me with a PhotoSmart C4700.
    It would be even nicer to have a simple iPhone app instead of using Safari.
    (Anyone want to write it?)
    -Wayne

Maybe you are looking for