functionradioFormatter(radio_name, radio_value, type) {
if(type =='formatter')
{
return function(cellvalue, options, rowObject) {
varelement_string ='';
for(varx in radio_value)
{
element_string +=""+ radio_value[x];
}
returnelement_string;
}
}
else
{
return function( cellvalue, options, cell){
return$(cell).find("input:radio:checked").val();
}
}
}