i have a coldfusion cfc and some methods in it. MethodA will return a cfquery object. now i use cfajaxproxy to call MethodA and get the query result in a cfm page. this cfm page already have a cfgrid there. now my question is how can i display the query result getting from MethodA in the grid which already have data display in it?
question about coldfusion displaying query result in a cfgrid
828 Views Asked by Just a learner At
1
There are 1 best solutions below
Related Questions in COLDFUSION
- CSV(having extra quotes in field value) to array in ColdFusion
- using some technique to fix the url
- Get number of files in various subdirectories relative to the current page - ColdFusion
- How to create a "VALID DOCX" using Coldfusion?
- Twilio Rest API Filtering using Coldfusion11
- Encoding for html in Open Graph Facebook attributes
- Embedding Image in Microsoft Word using ColdFusion
- CFMail with attachment is being sent and is in undelivr folder
- Error while Running a .exe file using coldfusion schedule task
- Coldfusion 9 serializeJSON()
- How to filter query results based on selection from dropdown list
- Display single digits with leading zero
- Coldfusion Session Timeout Application.cfc
- CFEXECUTE seems to not execute PowerShell in ColdFusion 11
- Joining SOLR Collections on ColdFusion Server
Related Questions in CFC
- ColdFusion Function Error (cfc)
- Issue with invoking a Coldfusion Component
- ColdFusion Component gets initiated from wrong path
- Calling a CFC with multiple arguments using AJAX
- CFC Undefined with variably defined method name
- Multi-application Coldfusion 7 server and CFC paths
- Returning results from remoteobject class to parent
- json feed from cfc file not displaying in FullCalendar
- User data is getting mixed up some of the time
- How does Coldfusion's createObject() function search for an component?
- How to pass form values to a populate query parameters without refreshing in ColdFusion
- Split A CFC file into multiple files
- Is it more efficient (Performance) to store the CFC in application variables OR instance the CFC on the page call?
- FullCalendar not displaying event times - fed from CFC
- Why are functions inherited in only one direction when CFCs extend each other?
Related Questions in CFGRID
- Issue with ColdFusion 2016 CFGrid update function
- Change cfgrid (html) cell color based upon data
- Can I add a button to a CFGRID that lets a user export the grid to an XLSX file? How?
- page automatically scrolls to cfgrid
- ColdFusion Tag is not supported
- CFGrid boolean columns submitting empty strings
- question about coldfusion displaying query result in a cfgrid
- How can I disable href link in cfgrid cells for blank rows?
- How to programmatically select rows in CFGRID with multiselectrow on CF9.01+?
- html cfgrid change the text of Sort Ascending and Sort Descending menu items on column headers
- cfgrid change cell color
- Decimal numbers in a HTML cfgridcolumn
- cfgrid displays values instead of valuelist on edit
- I can't seem to copy the rows in CFGRID and paste them
- How to call a javascript function when cfgrid finish loading data
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You should use cfgrid bind="cfc:You.CFC.Path.method(x,y,z,zz)", and you may want to use QueryConvertForGrid() in CF to prepare the data required for cfgrid.
see "Dynamically filling form data" for reference: http://livedocs.adobe.com/coldfusion/8/htmldocs/ajaxui_5.html