Dataprocessor

I have two text boxes outside the grid. Is there any way i can send the values of these two text boxes back to the server with the dataprocessor??

You can change the dataprocessor url dynamically.as

dp.setOnBeforeUpdateHandler(function(id){
dp.serverProcessor=“some.jps?param=”+document.getElementById(“some”).value;
return true;
});