I'm trying to do this:
Ok, so I have a radgrid, and on $(document).ready I want to loop through each row and send that data back to the XmlHttpPanel to process and return data (which I'll handle clientside)
problem is, the set_value is sending back the same value over and over again. The debugPanel step above shows me the IDs I'm trying to pass and they're all unique....but examining the Posts shows the same ID 40+ times.
Can it not do this?
Should I just use a regular jQuery ajax callback?
var panel = $find('xmlCallbackPanel'); |
//Callback to the webservice for each item |
$('.callbackitem').each(function () { |
var dateid = $(this).attr('id'); |
var text = $('#debugPanel').html(); |
$('#debugPanel').html(text + "<br />" + dateid); |
panel.set_value(dateid); |
}); |
Ok, so I have a radgrid, and on $(document).ready I want to loop through each row and send that data back to the XmlHttpPanel to process and return data (which I'll handle clientside)
problem is, the set_value is sending back the same value over and over again. The debugPanel step above shows me the IDs I'm trying to pass and they're all unique....but examining the Posts shows the same ID 40+ times.
Can it not do this?
Should I just use a regular jQuery ajax callback?