Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
ayuso_15 #1
Populating a CFGRID
I want to populate a cfgrid contained inside a flash form, depending on a serch
criteria. Is there anyway to do it without using flash remoting controls? I
have tried to follow the "Real Estate" example but I can't see the application
working fine locally.
ayuso_15 Guest
-
Populating a DG with a Dir Listing
I have a datagrid that I am trying to use to display all files that have been processed by my paperless system. I know my cfc function is working... -
Populating an SQL query
Another question. If anyone can give me some guidance I'd reallt appreciate it as I'm now going round in circles. I've got 12 checkboxes in a... -
Populating a Listbox
Hi there, I am currently running into a somewhat weired problem and hope that this NG is able to help ;-) I have a table in a MSSQL Server in... -
populating DB
hi .. ... i'm tryin to populate my SQL DB through Flash .. doesn't seem to work . it worx cool with HTML, but gives me an empty row in the DB, using... -
DataGridControl not populating
Hi, I'm attempting to load raw XML(XML string), parse it and populate a text box, parse it further into an ArrayList, then set the ArrayList as... -
lovedrama #2
Re: Populating a CFGRID
Ayuso_15,
Hope this is what you are looking for. Here is an example of how a CFGrid
would be if you want the result from a query. This does not need flash remote
to get the result. You will need to have the hidden UniqueID coming from the
Search Page.
<cfform name="FormName" format="flash" action="Form.cfm" method="post"
width="1000" height="440" timeout="700" style="marginTop: 0;
background-color:##99CCFF;">
<cfinput type="hidden" name="UniqueID"
bind="{GridName.dataProvider[GridName.selectedIndex]['UniqueID']}"
onChange="GridName.dataProvider.editField(GridName .selectedIndex, 'UniqueID',
UniqueID.text);"/>
<cfformgroup type="panel" label="Search Result" style="indicatorGap:0;
verticalGap:5; headerColors: ##277DC6, ##50ABF7; background-color:##99CCFF">
<cfgrid name="GridName" query="QueryName" height="325" autoWidth="yes"
align="center" colheaderfont="verdana" colheaderfontsize="10"
colheaderbold="yes" font="verdana" fontsize="10" rowheaders="no">
<cfgridColumn name="UniqueID" display="no" width="200">
<cfgridColumn name="Field1" header="Field1Title" width="200">
<cfgridColumn name="Field2" header="Field2Title" width="200">
</cfgrid>
</cfformgroup>
</cfform>
If you need any further help, I'll be glad to help you.
lovedrama Guest



Reply With Quote

