This topic is locked

update multi record using button

6/14/2012 10:57:06 PM
PHPRunner General questions
C
chanpeter88 author

I know the method to update multi-record from http://xlinesoft.com/phprunner/docs/update_multiple_records.htm
get the keys from server . Is it possible to get keys from client before - javascript ?. I want to get the selected value and prompt the confirm box with the selected value.
pls advise.

C
cgphp 6/15/2012
var selected = new Array();

$("input[name='selection[]']:checked").each(function() {

selected.push($(this).attr('value'));

});