JSTL expected
expected one of ["}", ".", ">", "gt", "=", "ge", "!=", "ne", "[", "+", "-", "*", "/", "div", "%", "mod", "and", "&&", "or", "||", "?"]
2010. 7. 7.
Ajax - Ajax.Updater
var ajaxUrl = getPath()+"/common/selectMemberTree.jsp"; new Ajax.Updater({success:'selectMemberTreeList'}, ajaxUrl, {method:'get', parameters : params, onLoding:function(){}, onSuccess:function(){}, onComplete:function(){alert('성공');}, onFailure:function(){alert('실패 하였습니다.');} }); Request와 같이 Loding, Success, Complate, Failure 등의 Callback 기능을 사용할수 있다. Prototype API를 봤더니, onFailure만 있어서 실패 했을 경우의..
2010. 6. 9.