Hi all,
I hope someone can help

I am using a datagrid with an inline editor, and a number of my columns use the "URL" option to load data dynamically from the server. What I would like to do is pass the current value in that column back with the URL so that I can do some processing with it.
EG:
$('#tt').datagrid({
title:'Editable DataGrid',
singleSelect:true,
idField:'itemid',
url:'get_grid_data.php',
columns:[[
{field:'itemid',title:'Item ID',width:60},
{field:'productid',title:'Product',width:100,
editor:{
type:'combobox',
options:{
valueField:'productid',
textField:'name',
url: 'get_product_list.php?current_product_id='+row.productid, required:true
}
}
},
]],
...
});
});
The above code is incomplete I know, it is just an example, with the line in red indicating what I am trying to accomplish. The server can receive the value as a GET or a POST, it doesnt matter, as long as I can find some way to pass the value...
Any assistance would be much appreciated
