Ask a Question related to Coldfusion Database Access, Design and Development.
-
Ad Bec #1
CFOUTPUT with Group attribute <back><next>navigation
I have relational database system and when the query is run, i get 300 rows but
only 5 should be displayed as I group by ListingID. I would like to create a
back next navigation with 10 per page but only the first 5 are displayed in the
output.
<cfoutput query="#attributes.QueryName#" group="NewsID"
StartRow="#url.StartRow#" maxrows="#EndRow#">
</cfoutput >
Is there an example that shows an efficient way to do this?
Thanks!
Ad Bec Guest
-
cfoutput cfquery "group processing" error
I am attempting to write data to an html table from three different Access tables. I have three (3) queries in the cftransaction, each later query... -
Retrieving XML attribute using XML::XPath::Node::Attribute
Hi I am trying to retrieve an attribute of a particular node from my XML using "XML::XPath::Node::Attribute", but couldn't come across on how to... -
Datagrid paging keeps going back to the first group
Sorry to post this in 2 groups, but I just found this group after posting to the other group. I am using the datagrid. I have allowpaging=true. ... -
cfgrid inside a <cfoutput query="myQuery" group="GROUP">
Is it possible to use a cfgrid inside a cfoutput with a query and a group. When I try do that I get the following error: INVALID_CHARACTER_ERR:... -
Equivalent of cfoutput group in ASP.NET
What is the ASP.NET equivalent? <cfoutput query='qNav' group='pageCategory'> <strong>#pagecategory#</strong><br>... -
Dan Bracuk #2
Re: CFOUTPUT with Group attribute <back><next>navigation
You almost have it. You have to cache your query, which you may have already
known. Also, instead of maxrows=#endrow#, just state the number of rows.
Speaking of which, you want 10 rows per page of which 5 are displayed? That
doesn't make sense.
Dan Bracuk Guest
-
Rick #3
Re: CFOUTPUT with Group attribute <back><next>navigation
I like to use a custom tag for this this one makes it very easy.
[url]http://www.johnstons.org/wdc/pub/cfusion/customtags/CF_PageThru/CF_PageThru.html[/url]
"Ad Bec" <webforumsuser@macromedia.com> wrote in message
news:dhi4di$cja$1@forums.macromedia.com...>I have relational database system and when the query is run, i get 300 rows
>but
> only 5 should be displayed as I group by ListingID. I would like to create
> a
> back next navigation with 10 per page but only the first 5 are displayed
> in the
> output.
> <cfoutput query="#attributes.QueryName#" group="NewsID"
> StartRow="#url.StartRow#" maxrows="#EndRow#">
>
> </cfoutput >
>
> Is there an example that shows an efficient way to do this?
>
> Thanks!
>
Rick Guest



Reply With Quote

