I am using ColdFusion 8 and I am running into an odd issue that I can't figure 
out.  I have an HTML cfgrid on an HTML CFFORM that is supposed to appear in an 
IFRAME.  The thing is that the CFGRID doesn't appear as anything but a gray 
line until I refresh the IFRAME's contents.  Then it is fine.  I don't think 
there is anything at all unusual about my cfgrid (except that it is inside an 
iframe). The same problem happens in Firefox and Internet Explorer.  Here is 
the code for the IFRAME's contents:

<cfgrid  
        name = "AGrid" 
                format="html" 
                font="Tahoma" 
                fontsize="12" 
                selectmode="edit" 
                striperows="yes"
                striperowcolor="##e0e0e0"
                bind="cfc:act_getCustomer.getCustomerCallLog({cfgridpage},
                              {cfgridpagesize},
                              {cfgridsortcolumn},
                              {cfgridsortdirection})"  
            onchange="cfc:act_getCustomer.updateCallLog({cfgridaction},
                                 {cfgridrow},
                                 {cfgridchanged})">
        
<!--- cfgridcolumn tags arrange the table and control the display. --->
                <!--- Hide the primary key, required for update --->
                <cfgridcolumn  name = "ID" display = "No" >
                <cfgridcolumn name = "CLIENTID" display = "No">
                <cfgridcolumn name = "date__happened" header = "Date" 
Select="No"   
                        width="140" textcolor="Black" bold="Yes">
                <cfgridcolumn name = "type_of_call" header = "Status" 
Select="No"
                        width="96"  >   
                <cfgridcolumn   name = "Comments" header = "Comments" 
Select="Yes"
                        width="275" textcolor="black" bold="no" 
dataalign="left"  >
                <cfgridcolumn name = "contact_Name" header = "Contact" 
Select="No"
                        width="65">
                <cfgridcolumn name = "contact_made_by" header = "By" Select="No"
                        width="65">             
                <cfgridcolumn name = "category" header = "Category" Select="No"
                        width="65" >                    
                 
</cfgrid> 

Thank you for any ideas 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288628
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to