var doSubmitInfoPanelSupplierList = function( myType ){
if (infoPanelSupplierList.form.isValid()){
Ext.MessageBox.wait('資料處理中','請稍後' );
infoPanelSupplierList.form.doAction('submit',{
url:myUrl,//文件路徑
- Jun 01 Wed 2011 11:05
-
EXT JS 表單提交
- Apr 19 Tue 2011 23:28
-
java 變數宣告
int i1 =0x2f Hexadecimal
int i2 =0117 Octal
char c =0xffff max char hex value
byte b = 0x7f max byte hex value
short s = 0x7ffff max short value
- Apr 14 Thu 2011 09:49
-
java Enumeration & Vector
不訂陣列,未定陣列大小。
private Vector _vector = new Vector();
實作 Enumeration 介面的物件,它產生一系列元素
Enumeration v = _vector .elements();
_vector.hasMoreElement();
- Mar 21 Mon 2011 10:31
-
HTML、CSS、XHTML 系列 02
<img>元素
<img src="images/look.gif" alt="look"> src屬性,要讀取的圖檔。
alt="look" alt屬性,如果無法顯示圖樣時,此時文字會出現在原本圖樣的位置。
width="48" height="100" width屬性,顯示寬度pixel。 height屬性,顯示高度pixel。
範例
- Mar 18 Fri 2011 11:57
-
Tomcat 7.x 安裝

下載Tomcat : http://tomcat.apache.org/
需要先安裝JAVA JDK
設定需要的相關環境變數:
變數名稱
JAVA_HOME C:\Program Files\Java\jdk1.6.0_24 (JDK所在位置)
- Mar 06 Sun 2011 23:30
-
HTML、CSS、XHTML 系列 01
HTML 簡單舉例:
<html> 告訴瀏覽器這是HTML文件的開始
<head> 頁面標頭開始
<title> this is Title </title> 頁面標題
<style type="text/css"> style的起始標籤,style元素放在HTML的<head>裡面
- Feb 17 Thu 2011 21:53
-
JAVA 命名規則 註解語法
撰寫程式碼風格
對於class 有一個不成文規定:名稱第一個字母大寫,如有多個字母就併在一塊(不以底線連接), 每個字第一個字母大寫。
example : class AllTheColorsOfTheRainbow{}
method 、fields、 object reference 命名規則如上,唯一例外的是第一個字母小寫。
example: int anIntegetRepresentingColors;
- Feb 11 Fri 2011 15:32
-
Eclipse 自動提示功能
打開/關閉 Eclipse 自動提示功能
路徑 Window ->Preference -> Java -> Editor
Auto-Activation
Enable auto Activation 打開或關閉
Auto Activation delay 延遲時間
- Jan 27 Thu 2011 23:34
-
Android 常駐程式 App Widget