Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Dec 05, 2008 04:17
open dhtmlx forum
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??
Answer posted by Support on Dec 05, 2008 05:16
You can change the dataprocessor url dynamically.as

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