Expand my Community achievements bar.

Guidelines for the Responsible Use of Generative AI in the Experience Cloud Community.

coldfusion val to cfc

Avatar

Former Community Member
I have coldfusion form and i would like to pass form value in
cfc using flex.



only problem i didn't see any example with cfc with where
condition. if u see artist example. bring all data..



I mean

select artistid, firstname, lastname, email

from artists where firstname like '#Arguments.firstname%#'







<noscript>

<object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"

id="test" width="70%" height="70%"

codebase="
http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">

<param name="movie" value="test1.swf" />

<param name="quality" value="high" />

<param name="bgcolor" value="##869ca7" />

<param name="allowScriptAccess" value="sameDomain" />

<embed src="test1.swf quality="high" bgcolor="##869ca7"

width="600" height="400" name="test" align="middle"

play="true"

loop="false"

quality="high"

allowScriptAccess="sameDomain"

type="application/x-shockwave-flash"

pluginspage="
http://www.adobe.com/go/getflashplayer"

>



</embed>

</object>

</noscript>



-------------------------------------------------------------------------------------------------------------------------------------------------------------------

<?xml version="1.0" encoding="utf-8"?>

<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"

layout="absolute"

creationComplete="initApp()">



<mx:Script>

<![CDATA[

import mx.collections.ArrayCollection;

import mx.rpc.events.ResultEvent;



public function initApp():void

{

remoteService.getQuery();

}

]]>

</mx:Script>



<mx:RemoteObject

id="remoteService"

destination="ColdFusion"

showBusyCursor="true"

source="components.simple">

</mx:RemoteObject>





<mx:Panel label="Simple Grid" width="100%"
height="100%">

<mx:DataGrid id="mygrid"

dataProvider="{remoteService.getQuery.lastResult}"

width="100%" height="100%">

<mx:columns>

<mx:DataGridColumn dataField="artistid" />

<mx:DataGridColumn dataField="firstname" />

<mx:DataGridColumn dataField="lastname" />

<mx:DataGridColumn dataField="email" />

</mx:columns>

</mx:DataGrid>

</mx:Panel>



</mx:Application>
1 Reply

Avatar

Level 3
In your remoteService.getQuery("youragumentdata"); so you'll
pass an argument, to your coldfusion cfc.