- Posts: 7
- Thank you received: 0
Please Log in or Create an account to join the conversation.
if($k!=0)$format.=' '.$val;
if($k!=0)$format.=''.$val;
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
nonsavant wrote: Merci beaucoup
Is it also possible to add more date formats to the calendar module tooltip? I would like the format to match the component, but unfortunately there is no option using the '.' character.
Thank you.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
<option value="%d.%m.%Y">d.m.Y - [ 25.11.2012 ]</option>
<option value="%d-%m-%y">d-m-y - [ 25-11-12 ]</option>
<option value="%Y-%m-%d">Y-m-d - [ 2012-11-25 ]</option>
<option value="%Y-%b-%d">Y-m-d - [ 2012-Nov-25 ]</option>
<option value="%d/%m/%Y">d/m/Y - [ 25/11/2012 ]</option>
<option value="%d/%m/%y">d/m/y - [ 25/11/12 ]</option>
<option value="%Y/%m/%d">Y/m/d - [ 2012/11/25 ]</option>
<option value="%Y/%b/%d">Y-m-d - [ 2012/Nov/25 ]</option>
<option value="%d %B %Y">d B Y - [ 25 November 2012 ]</option>
<option value="%d %b %Y">d b Y - [ 25 Nov 2012 ]</option>
<option value="%A, %d %B %Y">A, d B Y - [ dimanche, 25 novembre 2012 ]</option>
<option value="%a %d %b %Y">a d b Y - [ dim 25 nov 2012 ]</option>
<option value="%A, %B %d, %Y">A, B d, Y - [ Sunday, November 25, 2012 ]</option>
<option value="%a, %b %d, %Y">a, b d, Y - [ Sun, Nov 25, 2012 ]</option>
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.