Ignore:
Timestamp:
05/27/12 11:02:10 (12 years ago)
Author:
tbretz
Message:
Some small improvements and fixes; added a link to the scriptlog; added some (commented) code to get the scrollbar only in the tbody; reordered the creation of the table.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/www/smartfact/index.js

    r13931 r13935  
    99function $new(name) { return document.createElement(name); }
    1010function $txt(txt) { return document.createTextNode(txt); }
    11 function trim(str) { return str.replace("/^\s\s*/", '').replace("/\s\s*$/", ''); }
     11function trim(str) { return str.replace(/^\s\s*/, "").replace(/\s*\s$/, ""); }
    1212function valid(str) { if (!str) return false; if (str.length==0) return false; return true;}
    1313function isSliding() { var z = $("body").getAttribute("data-visible"); return $("table"+z) ? $("table"+z).offsetLeft!=0 : false; }
     
    191191        title = title.substr(1);
    192192
    193     var table = $("table"+z);
    194     if (table)
    195         $("body").removeChild(table);
    196 
    197     table = $new("table");
    198     table.setAttribute("class", "tborder");
    199     table.id = "table"+z;
    200     table.border = 0;
    201     table.cellSpacing = 0;
    202     table.cellPadding = "0px";
    203     /*table.width = "100%";*/
    204     //table.setAttribute("style", "overflow:hidden;position:fixed;top:0px;left:"+window.innerWidth+"px;")
    205     table.setAttribute("style", "position:absolute;top:0px;left:"+window.innerWidth+"px;width:100%;");
    206 
    207     // -----------------------------------------------------
     193    // ==================================================================
    208194
    209195    var th = $new("thead");
    210196    th.colSpan = 3;
    211197    th.width = "100%";
    212     table.appendChild(th);
    213198
    214199    var htr = $new("tr");
     
    247232    hhtr.appendChild(htd1);
    248233    hhtr.appendChild(htd2);
    249 /*
    250     htd0.style.verticalAlign = "middle";
    251     htd1.style.verticalAlign = "middle";
    252     htd2.style.verticalAlign = "middle";
    253     htd3.style.verticalAlign = "middle";
    254     htd4.style.verticalAlign = "middle";
    255 */
     234
    256235    var div1 = $new("div");
    257236    var div2 = $new("div");
     
    316295    htd4.appendChild(div4);     // Warning
    317296
    318     // -----------------------------------------------------
    319 
    320     var tbody = $new("tbody");
    321     table.appendChild(tbody);
    322 
    323     // -----------------------------------------------------
     297    // ==================================================================
    324298
    325299    var tf = $new("tfoot");
    326     table.appendChild(tf);
    327300
    328301    var ftr = $new("tr");
     
    344317    var ftd2 = $new("td");
    345318    var ftd3 = $new("td");
     319    var ftd4 = $new("td");
    346320    ftdH.setAttribute("width", "1px");
    347321    ftd2.setAttribute("width", "1px");
    348322    ftd3.setAttribute("width", "1px");
     323    ftd4.setAttribute("width", "1px");
    349324
    350325    ftdH.setAttribute("class", "tcell1");
     
    353328    ftd2.setAttribute("class", "tcell2");
    354329    ftd3.setAttribute("class", "tcell2");
     330    ftd4.setAttribute("class", "tcell2");
    355331
    356332    ftab.appendChild(ftdH);
     
    359335    ftab.appendChild(ftd2);
    360336    ftab.appendChild(ftd3);
     337    ftab.appendChild(ftd4);
    361338
    362339    var fdivH = $new("div");
     
    365342    var fdiv2 = $new("div");
    366343    var fdiv3 = $new("div");
     344    var fdiv4 = $new("div");
    367345    ftd0.style.paddingLeft = "5px";
    368     fdiv2.id="cmd"+z;
     346    fdiv4.id="cmd"+z;
    369347
    370348    fdiv2.setAttribute("class", "icon_white");
    371349    fdiv3.setAttribute("class", "icon_white");
     350    fdiv4.setAttribute("class", "icon_white");
    372351    fdiv2.setAttribute("style", "background-position:-72px 50%;");
     352    fdiv4.setAttribute("style", "background-position:-432px 50%;");
    373353    fdiv2.onclick = function () { this.style.backgroundColor='rgba(0,0,0,0.77)'; sendCommand('stop'); this.style.backgroundColor=''; };
    374354    if (is_cmd)
     
    395375        fdivH.onclick = function () { this.style.backgroundColor='rgba(0,0,0,0.77)'; loadPage('help-'+name, z, +1); };
    396376    }
     377    fdiv4.onclick = function () { this.style.backgroundColor='rgba(0,0,0,0.77)'; loadPage('scriptlog', z,  +1); };
    397378
    398379
     
    410391    if (name!='control')
    411392        ftd3.appendChild(fdiv3);
    412 
    413     $("body").appendChild(table);
     393    if (name!='scriptlog')
     394        ftd4.appendChild(fdiv4);
     395
     396    // ==================================================================
     397
     398    var tbody = $new("tbody");
    414399
    415400    for (var i=0; i<lines.length; i++)
    416401    {
    417402        lines[i] = trim(lines[i]);
     403
    418404        if (lines[i][0] == '#')
    419405            lines.splice(i--, 1);
     
    440426    for (var i=1; i<lines.length; i++)
    441427    {
     428        lines[i] = trim(lines[i]);
     429
    442430        if (lines[i].length==0)
    443431            continue;
     
    596584        tbody.appendChild(tr);
    597585    }
    598 /*
    599     if (true)
    600     {
    601         tr = $new("tr");
    602         tr.setAttribute("class", "row");
    603 
    604         td = $new("td");
    605         td.colSpan = "3";
    606         tr.appendChild(td);
    607 
    608         var sp = $new("div");
    609         sp.setAttribute("class", "icon_color");
    610         sp.setAttribute("style", "background-position: -144px -14px;");
    611         td.appendChild(sp);
    612 
    613         sp = $new("div");
    614         sp.setAttribute("class", "icon_color");
    615         sp.setAttribute("style", "background-position: -56px -14px;");
    616         td.appendChild(sp);
    617 
    618         tr.appendChild(td);
    619 
    620         tbody.appendChild(tr);
    621     }
    622 */
    623     // ---------------------------------------
     586
     587    // ==================================================================
     588
    624589    if (debug == true)
    625590    {
     
    635600    }
    636601
    637     // ---------------------------------------
     602    // ==================================================================
     603
     604    var table = $("table"+z);
     605    if (table)
     606        $("body").removeChild(table);
     607
     608    table = $new("table");
     609    table.id = "table"+z;
     610    table.border = 0;
     611    table.cellSpacing = 0;
     612    table.cellPadding = "0px";
     613    //table.setAttribute("style", "overflow:hidden;position:fixed;top:0px;left:"+window.innerWidth+"px;")
     614    table.setAttribute("style",
     615                       "position:fixed;width:100%;top:0px;"+
     616                       "left:"+window.innerWidth+"px;");
     617
     618    table.appendChild(th);
     619    table.appendChild(tbody);
     620    table.appendChild(tf);
     621
     622    $("body").appendChild(table);
     623
     624    // ==================================================================
     625
     626    /*
     627     // Scrollbar for just the body
     628     table.style.position  = "fixed";
     629     th.style.position     = "aboslute";
     630     tf.style.position     = "aboslute";
     631     tbody.style.overflowY = "auto";
     632     tbody.style.display   = "block";
     633     tbody.style.height    = (window.innerHeight-th.clientHeight-tf.clientHeight)+"px";
     634     tbody.id = "tbody"+z;
     635     th.id    = "thead"+z;
     636     tf.id    = "tfoot"+z;
     637     */
     638
     639    // ==================================================================
    638640
    639641    table.setAttribute("data-file", name);
     
    652654        return;
    653655
     656    // ===========================================
     657    /*
     658     var tb = $("tbody"+z);
     659     var hw = $("thead"+z).clientHeight;
     660     var fw = $("tfoot"+z).clientHeight;
     661
     662     tb.style.height = (window.innerHeight-hw-fw)+"px";
     663     */
     664    // ===========================================
     665
    654666    var fixedw = $("body").getAttribute("data-width");
    655667    var fixedh = $("body").getAttribute("data-height");
     
    657669    var W = fixedw>0 ? fixedw : window.innerWidth;
    658670    var H = fixedh>0 ? fixedh : window.innerHeight;
    659 
    660     //alert(window.innerWidth+"/"+$("body").scrollWidth+"/"+$("table"+z).scrollWidth);
    661 
    662     // wIw   bSw   tSw
    663     // 430 / 860 / 430
    664     // 429 / 430 / 430
    665     // 366 / 430 / 430
    666 
    667     // 672 / 1344 /  672
    668     // 672 / 1329 / 1329
    669 
    670     // Chrome: needs scrollbar
    671     // wiW  bsW  tsW  bcW  tcW  boW  toW
    672     // 100  200  100   84  100   84  100
    673     // 100   85   85   69   85   79   85
    674 
    675     // Chrome: does not need scrollbar
    676     //  100  200  100  84  100   84  100
    677     //  100  100  100  84  100   84  100
    678 
    679     // Firefox: does not need scrollbar
    680     //  100   84  100  84  100   84  100
    681     //  100   84  100  84  100   84  100
    682 
    683     // Firefox: does need scrollbar
    684     //  100   84  100  84  100   84  100
    685     //  100   69   85  69   85   69   85
    686 
    687     // opera no scrollbar:
    688     //  100   84  100  84  100   84  100
    689     //  100   84  100  84  100   84  100
    690671
    691672    var max = $("body").getAttribute("data-max")=="yes";
Note: See TracChangeset for help on using the changeset viewer.