I'm just starting using the ajaxCFC framework. Looks very promissing.
Only i have problems publishing query results to a page. So I got
query results from a cfc function which i want to display in a table.
I've used this code, but that doesn't work. can somebody help me with
this?
function query_response(r){
var getLabel = function(result) { return result.processLabel };
var getLevel = function(result) { return result.processLevel };
DWRUtil.removeAllRows("tableBody");
DWRUtil.addRows("tableBody", r, [ getLabel , getLevel ]);
}