導航:首頁 > 編程語言 > extjs日期驗證

extjs日期驗證

發布時間:2024-10-24 15:58:38

1. extjs 判斷是不是日期類型

日期判斷

function getDiffDate(m){
m-=(D=parseInt(m/86400000))*86400000;
return D+"";
}
//判斷日期大小
Ext.apply(Ext.form.VTypes,{
validate:function(componentValue,h){//componentValue就是觸發這個事件的組件的值
if(h.param.id){
var graateTime= new Date(componentValue).getTime();
var enterTime = new Date(Ext.getCmp(h.param.id).getValue()).getTime();
if(getDiffDate(graateTime-enterTime)<0){
return false;
}
return true;
}
},
validateText:'入學時間必須晚於畢業時間'
});
var enterDate = new Ext.form.DateField({
fieldLabel:'入學時間',
format:'Y/m/d',
allowBlank:false,
selectOnFocus:true,
name:'enterDate',
id:"enterTime",
width:200
});

var graateDate = new Ext.form.DateField({
fieldLabel:'畢業時間',
format:'Y/m/d',
name:'graateDate',
id:"graateTime",
width:200,
vtype:'validate',
param:{id:'enterTime'}//入學時間的id
});

2. extjs表格日期類型顯示為[object Object]

傳到前台的json,日期最好是字元串的,在後台查詢時,就把日期格式化好,這樣前台處理非常容易。

然後如果非要前台處理,Ext.data.Record.create這個最好指明類型,
如:var sample = new Ext.data.Record.create([{
name : "id",
type : "string",
mapping : "id"
}, {
name : "name",
type : "string",
mapping : "name"
}
.....

{header : '開始時間', dataIndex : 'createDate',
renderer:function(value){
if(value instanceof Date){
return new Date(value).format("Y-m-d");
}else{
return value;
}
}
這個的寫法沒問題

3. Extjs grid表中修改日期(datafield),後台獲取的卻是Wed Sep 10 2014 00:00:00 GMT+0800這樣的格式

因為你Model中 djrq 可能設置的 type = 'date' , 所以會轉換為 date並且提交的時候又從date專程了string...所以到後台就是那種格式了

4. extJs中的datefield怎麼設置 能只選擇當前時間以後的日期

這個設置一個監聽函數,選擇之後如果是當前日期之前的日期則給出提示,而且dateField不賦值。可以使用 onSelect事件

5. Extjs 中DateFiled的日期格式問題

{
header:'時間',
dataIndex:'date',
editor:newExt.grid.GridEditor(newExt.form.DateField({
format:'Y-m-d'
})),
renderer:function(value){
returnvalue.format("Y-m-d");
}
}

6. extjs的datefield輸入錯誤值時不讓自動修改日期格式

開啟field的值有效驗證,提交前判斷存在無效field時不允許繼續。

閱讀全文

與extjs日期驗證相關的資料

熱點內容
達夢資料庫驅動安裝 瀏覽:167
招投標文件範本哪裡下載 瀏覽:807
java技術論壇 瀏覽:982
如何把游戲的數據刪光 瀏覽:84
騰訊空間游戲介面對接程序開發 瀏覽:641
把cad安裝文件改名了打不開 瀏覽:25
cy7c68013通信上位機程序 瀏覽:619
電腦崩盤如何恢復桌面數據 瀏覽:299
桌面文件怎麼用硬碟導出 瀏覽:79
編程爭分奪秒怎麼講 瀏覽:841
zg4分之3的螺紋怎麼編程 瀏覽:150
安卓創建文件夾許可權 瀏覽:292
sql如何查找兩個表中不同的數據 瀏覽:847
編程的課程哪個品牌好 瀏覽:704
晶元編程什麼意思 瀏覽:3
編程怎麼製作手機軟體 瀏覽:285
文件名通常由哪些組成 瀏覽:668
注冊機找不到amtlib文件 瀏覽:59
現在的編程思想怎麼樣 瀏覽:215
網路興情體現出的一些關系有哪些 瀏覽:806

友情鏈接