CFGrid bound to another CFGrid returns null
i have cfgrid bound cfgrid returns null value.
- worked in cf8
- binding cfinput displays proper value
- cfc no problem hard coded value in place of bind works
- writing log cfc verifies null value returned
<!--- select office --->
<input type="checkbox" id="pckoffice1" onclick="setoffice();" checked>bangor
<input type="checkbox" id="pckoffice3" onclick="setoffice();" checked>lamoine
<input type="checkbox" id="pckoffice5" onclick="setoffice();" checked>lincoln
<input type="checkbox" id="pckoffice7" onclick="setoffice();" checked>machias
<br/>
<input type="hidden" id="officefilter" name="officefilter" value="'1','3','5','7','2','9'">
<!--- cycle grid --->
<cfgrid name="gdcycle" format="html" colheaderbold="true" striperows="no"
striperowcolor="##ccffcc" selectcolor="#selectcolor#" selectmode="row" selectonload="false"
bgcolor="##ffffbf;" pagesize="13" height="370"
bind="cfc:mvrs_cycle.getcycles({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridso rtdirection},{officefilter@change})">
<cfgridcolumn name="print" header="" width="55">
<cfgridcolumn name="cycleid" header="cycle" width="60">
<cfgridcolumn name="numroutes" header="## routes" width="70">
</cfgrid>
<!--- selected cycle bound cycle grid --->
<cfinput name="" id="selectedcycle" bind="{gdcycle.cycleid}">
<!--- route grid bound cycle grid --->
<cfgrid name="gdroute" colheaderbold="true" format="html" striperows="no"
bindonload="false" height="370" selectmode="row" style="display:none;"
pagesize="12" selectonload="false"
bind="cfc:mvrs_route.getroutesbycycleid({cfgridpage},{cfgridpagesize}, {cfgridsortcolumn},{cfgridsortdirection},{gdcycle.cycleid},{officefilter@change})">
<cfgridcolumn name="routeid" display="false">
<cfgridcolumn name="print" header="" width="60">
<cfgridcolumn name="routenumber" width="70">
<cfgridcolumn name="numbercustomers" width="90">
<cfgridcolumn name="numbermeters" width="70">
<cfgridcolumn name="numberreadings" width="80">
<cfgridcolumn name="office" header="office" width="50">
<cfgridcolumn name="complete" header="complete?" width="80" dataalign="center"
type="string_nocase">
<cfgridcolumn name="forcecomplete" header="force complete?" dataalign="center" width="130">
</cfgrid>
any ideas? i'm stumped....
More discussions in ColdFusion
adobe
Comments
Post a Comment