This might help:
For those suffering problems with IE6 (and other browsers)
especially using CFTREE, there is a new tech note just published
describing the problem and available workarounds / fixes.

ColdFusion Server 5 : Hot Fix for Applets When Using Java Plug-
in Versions Greater Than 1.3.1_01a

http://www.macromedia.com/v1/Handlers/index.cfm?ID=23150&Method=Full

Stephen
> I have a cfgrid with SelectMode="Edit" and when I submit it the
> action page does not seem have the 3 arrays that its supposed to
> have.
> 
> One of the arrays are "form.gridname.rowstatus" I test for it and it
> is not defined.
> 
> I recently upgraded to CF5, this code used to work in CF4.5.
> 
> Anyone know why im not getting the arrays like im supposed to?
> 
> A bit of test code is below
> 
> Thanks,
> Jeff
> 
> -------------------------------------------- code
> -----------------------------------------------------
> 
> <cfif IsDefined("Action")>
>  <cfif IsDefined("Form.Products.rowstatus.action")>
>   Form.Products.RowStatus.Action is defined<br>
>  <cfelse>
>   Form.Products.RowStatus.Action is NOT defined<br>
>  </cfif>
> </cfif>
> 
> <cfform action="#ThisPage#" method="POST" enablecab="Yes">
>  <cfgrid name="Products" selectmode="EDIT" insert="Yes" delete="Yes"
> width="620" height="226" colheaderfontsize="15"
> rowheaderfontsize="15" >
>   <cfgridcolumn name="SKU" header="SKU" headeralign="CENTER"
> width="120">
>   <cfgridcolumn name="ProductName" header="Product Name
> (description)" headeralign="CENTER" width="300">
>   <cfgridcolumn name="Quantity" header="Qty"
> headeralign="CENTER" dataalign="CENTER" width="50">
>   <cfgridcolumn name="Price" headeralign="CENTER"
> dataalign="CENTER" width="60">
>   <cfgridcolumn name="ProdSort" header="Sort"
> headeralign="CENTER" dataalign="CENTER" width="55">
>   <cfset ProdSort = 10 >
>   <cfloop from="1" to="10" index="PreRow">
>    <cfgridrow data="sku123,Test Product,0,10,10"> 
>    <cfset ProdSort = ProdSort + 10 >
>   </cfloop>
> 
>  </cfgrid>
>  <br>
>  <input type="submit" name="Action" value="Add Products">
> </cfform>
> 
> -------------------------------------------- code
> -----------------------------------------------------
> 
______________________________________________________________________
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to