CFGRID not displaying data from query
Hello,
I have a very simple query, which is being used to populate cfgrid. The headers and paging display, the grid behaves as if it's laoding data, but never does. I've run the query in the background and it returns 4 rows.The CFC calling the query simpy takes in the parameters and returns the query.
The code is as follows:
<cfgrid bind="cfc:#request.ictcomponent_path#.getSystemMessages({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection},'#session.dsn#', '#variables.userId#','#variables.service_id#','#adminAccess#')" selectcolor="##0066CB" selectonload="false" striperows="yes" striperowcolor="##efefef" pagesize="#pagesize#" colHeaderBold="no" selectmode="row" format="html" name="boxes" autowidth="no" rowheaders="no">
<cfgridcolumn name="id" header="ID" display="no" width="0">
<cfgridcolumn name="title" header="Title" width="125">
<cfgridcolumn name="message" header="Message" width="200">
<cfgridcolumn name="valid_from" header="Valid From" width="120">
<cfgridcolumn name="valid_to" header="Valid To" width="120">
<cfgridcolumn name="SEND_TO_ALL_USERS" header="Recipients" width="90">
<cfif adminAccess EQ "True"><cfgridcolumn name="removed_date" header="Removed Date" width="125"></cfif>
</cfgrid>
There seems to be a javascript error on the page, which says Exception thrown but not caught, could this be the cause of the problem?
Thanks.
