Popular Posts
SwiXml - TabbedPane TabbedPane.xml <?xml version="1.0" encoding="UTF-8"?> <panel layout="BorderLayout">     <label... Data type 資料類型 預設大小 大小 初始值 輸出長度 輸出定位 說明 C 1 1-65535 SPACE 字串長度 LEFT-JUSTIFIED 字... Create barcode import java.io.File; import java.io.FileNotFoundException; import net.sourceforge.barbecue.Barcode; import net.sourceforge.barbecue.Barcode...
Stats
Form tool
var FormTool = {
    submit: function(obj, theForm){
        var f = theForm && theForm.tagName == "FORM" ? theForm : document.createElement("form");
        if(obj){
            var e = false;
            for(var i in obj){
                if(i.toString().charAt(0) == "$"){  // form attribute
                    f.setAttribute(i.toString().substring(1),obj[i]);
                }else{
                    e = document.createElement("input");
                    e.type = "hidden";
                    e.name = i;
                    e.value = obj[i];
                    f.appendChild(e);
                }
            }
        }
        if(!f.parentElement) document.body.appendChild(f);
        f.submit();        
    }
};
// ex:
// FormTool.submit({$action:'/myPage.php',pageIndex:2,pageSize:10});