Quote from: Plankton at Apr 26, 2010, 12:39 PM
Hi Charles,
I have some feedback for you... 
1) Could you please advice how to separate upcoming and archived events (list mode)? I don’t remember if it worked in 0.0.4 or not, but seems that currently it does not.
2) Current day was highlighted with black background in calendar mode in 0.0.4. In 0.0.5b.5 it does not.
3) In 0.0.4 font size of event date like ’25’ (Apr, 25) was 100%, while for the range of dates like ’25-26’ - 75% (list mode). There were 2 different parameters for these 2 cases. In 0.0.5 there is a single parameter for both cases. I would appreciate if you separate these date font-sizes back.
Thank you in advance! 
1) I’m not 100% sure I understand what your trying to accomplish, but currently the Event List only pull in events with the current date "4/26/2010" forward and does not look at past events. However good news is in the next release I’ve add in additional parameters that will allow you to set either hard dates ranges, current week forward, and support PHP strtotdate parameters like "+1 week" or "-1 day" etc.
2) In the Manager mxCalendar Configuration Tab you’ll want to change the
Enable Day of Month class value to
true then set the
Day of Month Class value to your defined class name in CSS, if using the default theme it’s value should be
today (see screen capture below)
3) That is now a piece of the theme file and the default theme makes them the same currently. In order to make this change I’d recommend you add the following entry to your CSS file as the theme still renders the class name "repeat" but was removed from the default theme CSS file "mxCalendar/themes/default/css/mxCalendar.css", which does get update with releases thus why the change should be made to your CSS file.
p.repeat { font-size:75%; }
- alternative -
you could create a chunk and pass in the parameter to override that template file with your provided chunk, use the "mxCalendar/themes/default/views/event.detail.html" file as a template for your chunk. Then in your snippet call place the parameter:
&mxcTplEventDetail=`YOUR_CHUNK_NAME`
which would look like this with the rest
[!mxcalendar? &mxcAjaxPageId=`YOUR_AJAX_RESPONSE_PAGE_ID` &mxcTplEventDetail=`YOUR_CHUNK_NAME` !]
cheers