I am using access='remote' in my cffunction method:

so Used <cfsetting showdebugoutput="no"> after the <cfcomponent> but with no 
effect. I dont see any output, but I donot see any result in my grid. below is 
the jquery function calling the cfc:

<script type="text/javascript">
$(document).ready(function(){
$("#list").jqGrid({
url:'test.cfc?method=buildGrid',
datatype: 'json',
colNames:['col1','col2', 'col3'],
colModel:[{name:'col1',index:'col1', width:160},
{name:'col2',index:'col2', width:190},
{name:'col3',index:'col3', width:180, align:"right"}],
pager: $('#pager'),
rowNum:10,
rowList:[10,20,30],
sortorder: "desc",
viewrecords: true,
caption: 'Invoices',
jsonReader: {
root: "ROWS",
page: "PAGE",
total: "TOTAL",
records: "RECORDS"
}
});
});
</script> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338060
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to