Ask a Question related to Coldfusion Database Access, Design and Development.
-
jonparadise2 #1
Duplicate dates not displaying
I've created a simple calendar page which uses 2 cfoutput groups to put the
calendar events together into monthly sections, then orders the events within
that month into date order.
It works well, however, when there are more than one events on a specific
date, it will only display one of them, and ignore the rest.
This is the SQL
SELECT
year(date_start) as year_start
, month(date_start) as month_start
, date_start
, date_finish
, evt_name
, evt_detail
FROM calendar
<!---Use sql to set todays date--->
WHERE date_start >= current_date
order
by year_start
, month_start
,date_start
This is my Cf code:
<cfoutput query="calendar" group="month_start">
#MonthAsString(calendar.month_start)##calendar.yea r_start#"
<cfoutput group="date_start">
#DateFormat(calendar.date_start, "dd-mmm")#
#DateFormat(calendar.date_finish, "dd-mmm")#
#Trim(calendar.evt_name)#
#Trim(calendar.evt_detail)#
</cfoutput>
</cfoutput>
Is there something rather obvious I'm missing?
jonparadise2 Guest
-
Displaying dates on X-axis
Hi, I want display dates on X-axis using DateTimeAxis. It is coming properly for short period say one month. if i give one year span the date... -
Dates & SQL
In my CF form I have created a date object using #DateFormat(Now(),"MM/DD/YY")# which displays the date as: 07/29/05. When the date is inserted... -
ASP/VBS Dates Between Dates
I'm trying to filter records depending on 2 dates requested from the querystring MMColParam1 (startdate) and MMColParam2 (enddate), i.e. a list... -
Displaying Dates
I am currently displaying three dates at the top of a web page - using #DateFormat(Now(), DDD, DD/MM/YYY)# #DateFormat(Now()+1, DDD,... -
Dates again
Hello all I'm having trouble getting iis to understand the UK format of dates ASP off a MS Access database I have the following query:...



Reply With Quote

