Hi

I'm having a mare with an HTML cfgrid which will not post any data whatever I 
do to it. I've used Flash grids before and not had any problems but this HTML 
grid I just cannot work out at all.

It is bound to a CFC and populates itself just fine. However, once a row is 
selected and Submit is pressed, the FORM object on the destination page is 
completely blank.

Any thoughts on this I'd really appreciate.

The code for the grid is

<cfform action="myForm.cfm" 
        method="post"
        name="myForm"
        format="html">
<cfgrid width="900"
        height="400"
        format="html"
        name="myGrid"
        pagesize="10"
        selectmode="row"
        bind="cfc:path_to_cfc+arguments)">
<cfgridcolumn name="id" header="id" />
<cfgridcolumn name="description" header="Description" width="200" select="Yes" 
/>
<cfgridcolumn name="organisation_name" header="Organisation" width="200" 
select="Yes" />
<cfgridcolumn name="type_name" header="Type" width="200" select="Yes" />
<cfgridcolumn name="last_updated" header="Last updated" width="200" 
select="Yes" />
<cfinput value="View" type="submit" name="gridEntered">
</cfgrid>
</cfform>

On the page myForm.cfm I get the following blank variables in the FORM object

MYGRID
__CFGRID__MYFORM__MYGRID

Thanks

DomH



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

Reply via email to