Newbie - Double Click Event
Hi,
I am writting an HTML/PHP/MYSQL web based application and I have stumbled accross ActiveWidgets when trying to work out code to display the results of a search query.
Diplaying the query in a AW grid is exaclty what I am looking for, It looks great! However once I have displayed the grid, I would like to be able to double click onto a cell, and somehow using something like the php variable $_POST, post the cell value back to another php page. (returning back to my web application)
I have attempted something like this,
// Double click event
var RecordID = obj.getCellValue(column, row);
obj.onCellDoubleClicked = function(event, column, row){
window.open('http://localhost/pyramid/customer.php?id='+RecordID,'_POST');
}
Please Help!
I am writting an HTML/PHP/MYSQL web based application and I have stumbled accross ActiveWidgets when trying to work out code to display the results of a search query.
Diplaying the query in a AW grid is exaclty what I am looking for, It looks great! However once I have displayed the grid, I would like to be able to double click onto a cell, and somehow using something like the php variable $_POST, post the cell value back to another php page. (returning back to my web application)
I have attempted something like this,
// Double click event
var RecordID = obj.getCellValue(column, row);
obj.onCellDoubleClicked = function(event, column, row){
window.open('http://localhost/pyramid/customer.php?id='+RecordID,'_POST');
}
Please Help!
Jez
February 15,