issue 46 apply validator to point module

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8544 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ovclas 2011-06-29 08:15:55 +00:00
parent 13bf055f34
commit a765754a07
18 changed files with 92 additions and 18 deletions

View file

@ -52,15 +52,14 @@ function doPointRecal() {
);
}
function updatePoint(member_srl, action)
function updatePoint(member_srl)
{
var $point = jQuery('#point_'+member_srl);
get_by_id('update_member_srl').value = member_srl;
get_by_id('update_action').value = action;
get_by_id('update_point').value = $point.attr('value');
get_by_id('update_point').value = $point.val();
var hF = get_by_id('updateForm');
procFilter(hF, update_point);
hF.submit();
}