jQuery FullCalendar accents in dayView -


i think bug. setup names (in italian) of days:

daynames:['domenica','lunedì', 'martedì', 'mercoledì', 'giovedì', 'venerdì', 'sabato'] 

the name shown correctly in header of dayview not in subheader. enter image description here

does know why?

same problem. solved changing function "htmlescape" in file fullcalendar.js add:

.replace(/ì/g, 'ì') 

the function work correctly me (i need italian language in application), must add character correctly encod in day names

function htmlescape(s) {     return (s + '').replace(/&/g, '&amp;')         .replace(/</g, '&lt;')         .replace(/>/g, '&gt;')         .replace(/'/g, '&#039;')         .replace(/"/g, '&quot;')         .replace(/ì/g, '&igrave;')         .replace(/\n/g, '<br />'); } 

Comments

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -