king star
Posts: 5
Nickname: kingstar
Registered: Dec, 2006
|
|
Re: Recommend an AJAX IDE - JoyiStar AJAX WebShop x
|
Posted: Dec 19, 2006 10:50 PM
|
|
How to convert the output format in Javascript Mini commend
If you want to format the output in Javascript, you must realize your codes by yourself because there are no related functions in Javascrip. These days, I got a set of functions written in Javascript to realize the data formatting coded by AJAX WebShop (You can dowonload AJAX WebShop in theire official site: http://www.joyistar.com. Version 3 is recommended). They are very helpful.
Find “system.js” in the directory of AJAX WebShop and you will get these functions below:
function FormatFloat(value,mask) { return BasicFormat(value,mask,'FormatNumber') } function FormatDate(varDate, bstrFormat, varDestLocale) { return BasicFormat(varDate,bstrFormat,'FormatDate',varDestLocale); } function FormatTime(varTime, bstrFormat, varDestLocale) { return BasicFormat(varTime,bstrFormat,'FormatTime',varDestLocale); } function BasicFormat(value,mask,action,param) { var xmlDoc; var xslDoc; var v=''+value+''+mask+''; xmlDoc=parseXML(v);
var x; if(isIE) x='' else x=''; x+=''; if(isIE) { x+=''+action+'('+value+',"'+mask+'"'; if(param)x+=','+param; x+=')'; } else x+='';
x+=''; xslDoc=parseXML(x); var s; if(isIE) s= xmlDoc.transformNode(xslDoc) else{ //for mozilla/netscape var processor = new XSLTProcessor(); processor.importStylesheet(xslDoc); var result = processor.transformToFragment(xmlDoc, xmlDoc); var xmls = new XMLSerializer(); s = xmls.serializeToString(result); } return s; }
|
|