Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
inhows #1
Re: CFGRID href + hrefkey
OK so the code below is correct??? But for me it does not go to the URL/href
What am I missing here? <cfform format='flash' width='100%' height='100%'>
<cfgrid name = 'gridnote' query = 'rsmynotes' rowHeaders = 'No' colHeaderBold =
'Yes' selectmode='single' href='noteextra.cfm' hrefkey='noteid'
highlighthref='yes'> <cfgridcolumn name='noteid' display='no'> <cfgridcolumn
name='notename' header='Name'> <cfgridcolumn name='notenote' header='Note'>
</cfgrid> </cfform>
inhows Guest
-
href help
I'm pretty new to CF still and I have created a cfm page that retreives a specific record according to what was selected on the previous page. The... -
Href not Working with CFGRID in Flash Form
Seriously, HREF's don't work in CFGrid Flash? I was very excited to upgrade.... now, not so much.:frown; -
Mimicing missing href attribute in Flash CFGRID
Hi All, Is there any way to load a new page on click of a row in a Flash CFGRID? I need it to use an url that's in a column in the db just like... -
Get-Post in <A HREF>....
I've a page with a link like this: <a href="Login.php?LogType=SearchProfile">Profils de recherche</a> <a... -
href code
Hi How to write in c# href code so it looks in source Slide - pokaz programu - Remonty firmy Delta Software pls. look source of this link.... -
eastinq #2
Re: CFGRID href + hrefkey
I believe the href properties only work with the applet format. See the cfgrid documentation.
<cfform format="html"...
<cfgrid format="applet" ...
eastinq Guest
-
Drayp #3
Re: CFGRID href + hrefkey
This is probably a bit late but the following is the hack I use:
<cfform action="getThread.cfm" method="POST" height="600" width="600"
format="flash" skin="haloSilver">
<cfformgroup type="panel" label="Current forums" visible="Yes" enabled="Yes">
<cfformitem type="html" visible="Yes" enabled="Yes">
<cfloop query="qGetForums">
<cfoutput><a
href="threads.cfm?fid=#forumID#">#forumName#,#foru mDescription#</a><br
/></cfoutput>
</cfloop>
</cfformitem>
</cfformgroup>
</cfform>
Drayp Guest



Reply With Quote

