I know this can be done and I have found references to it in this forum, but I have not been able to locate any code. I am trying to click on a day in the default.html grid view and have it take me to the oneclick add event screen, and automatically fill in the date.
I think I need to modify the followin line in this code from default.html (near the bottom)
looks like this:
<A HREF="<%=$CGI_URL_QUERYSTRING%>selected_datestring=<%=$DAY->{'datestring'}%>&datestring=<%=$DAY->{'datestring'}%>&view=Day" CLASS="griddatetext"><%if($DAY->{'dd'}==1&&$VIEW ne "Month"){%><%=$DAY->{'monthname'}%> <%}%><%=$DAY->{'dd'}%></A>
***************
CODE BELOW
***************
<%-- MONTHLY OR WEEKLY VIEW --%>
<% if ($VIEW eq "Month" | | $VIEW eq "Week" | | $VIEW eq "Two-Week" | | $VIEW eq "Three-Week" | | $VIEW eq "Four-Week") { %>
<%-- GRID STYLE DISPLAY --%>
<% if ($STYLE eq "Grid") { %>
<TABLE BORDER="1" CLASS="thinborder" HEIGHT="100%" WIDTH="100%" CELLPADDING="2" CELLSPACING="1">
<TR>
<%FOREACH GRID COLUMN%>
<TH CLASS="thinborder" BGCOLOR="<%=$_COLUMN_HEADER_BGCOLOR%>"><SPAN CLASS="columnheader"><%= $Grid->{'daynames'}->[$COL] %></SPAN></TH>
<%/FOREACH%>
</TR>
<%FOREACH GRID ROW%>
<TR <%=$rowheight%>>
<%FOREACH GRID COLUMN%>
<% $i=0; %>
<TD CLASS="thinborder" VALIGN="TOP" WIDTH="14%" <%=$rowheight%> BGCOLOR="<%IF SELECTED%><%=$_GRID_CELL_SELECTED_BGCOLOR%><%ELSE%><%=$_GRID_CELL_BGCOLOR%><%/IF%>">
<%IF DISPLAY%>
<SPAN BGCOLOR="<%=$_GRID_DATE_BGCOLOR%>" CLASS="griddatetext"> <NOBR><A HREF="<%=$CGI_URL_QUERYSTRING%>selected_datestring=<%=$DAY->{'datestring'}%>&datestring=<%=$DAY->{'datestring'}%>&view=Day" CLASS="griddatetext"><%if($DAY->{'dd'}==1&&$VIEW ne "Month"){%><%=$DAY->{'monthname'}%> <%}%><%=$DAY->{'dd'}%></A> </NOBR></SPAN>
<%FOREACH EVENT%>
<%$i++;%>
<SPAN CLASS="gridtext">
<%
Thanks for any help