jQWidgets Forums
Forum Replies Created
-
Author
-
February 12, 2016 at 12:06 pm in reply to: remove special dates from calendar remove special dates from calendar #81401
Hristo i am sorry for posting so many message.
Here is my fiddle you can create multiple elements http://jsfiddle.net/zyhfm6oo/14/ .
Is there a way to remember what dates are selected in pervious calendar and make calendar colorized right now when you create element and select dates of range. It removes color in dates that was selected perviously thanks.
February 12, 2016 at 11:38 am in reply to: remove special dates from calendar remove special dates from calendar #81400Hristo hey again , couldnt find a way to send p.m. to you. jqx widget has online support or something i mean it is like a channel in freenode may be thanks.
February 12, 2016 at 9:38 am in reply to: remove special dates from calendar remove special dates from calendar #81396i fixed that i am sorry
February 12, 2016 at 8:51 am in reply to: remove special dates from calendar remove special dates from calendar #81392Hello dear Hristo,
Thanks for an answer it seems pretty straightforward. But what i want actually creating multiple instance and using all of them to colorize below calendar. This example create DateTimeInput when you click create button but i couldnt use the calendar feature. Jqx doesnt allow to use multiple instance. Example is below.
http://jsfiddle.net/zyhfm6oo/10/
Thanks
February 10, 2016 at 12:09 pm in reply to: how can i customize calendar to show French? how can i customize calendar to show French? #81331(function( window, undefined ) {
var Globalize;
if ( typeof require !== “undefined” &&
typeof exports !== “undefined” &&
typeof module !== “undefined” ) {
// Assume CommonJS
Globalize = require( “globalize” );
} else {
// Global variable
Globalize = window.Globalize;
}Globalize.addCultureInfo( “tr-TR”, “default”, {
name: “tr-TR”,
englishName: “Turkish (Turkey)”,
nativeName: “Türkçe (Türkiye)”,
language: “tr”,
numberFormat: {
“,”: “.”,
“.”: “,”,
“NaN”: “n. def.”,
negativeInfinity: “-unendlich”,
positiveInfinity: “+unendlich”,
percent: {
pattern: [“-n%”,”n%”],
“,”: “.”,
“.”: “,”
},
currency: {
pattern: [“-n $”,”n $”],
“,”: “.”,
“.”: “,”,
symbol: “€”
}
},
calendars: {
standard: {
“/”: “.”,
firstDay: 1,
days: {
names: [“Pazar”,”Pazartesi”,”Salı”,”Çarşamba”,”Perşembe”,”Cuma”,”Cumartesi”],
namesAbbr: [“Pa”,”Pz”,”Sa”,”Çr”,”Pr”,”Cu”,”Ct”],
namesShort: [“Pa”,”Pz”,”Sa”,”Çr”,”Pr”,”Cu”,”Ct”]
},
months: {
names: [“Ocak”,”Şubat”,”Mart”,”Nisan”,”Mayıs”,”Haziran”,”Temmuz”,”Ağustos”,”Eylül”,”Ekim”,”Kasım”,”Aralık”,””],
namesAbbr: [“Oc”,”Şb”,”Mr”,”Ns”,”Ma”,”Hz”,”Tm”,”At”,”el”,”Ek”,”Ks”,”Al”,””]
},
AM: null,
PM: null,
eras: [{“name”:”n. Chr.”,”start”:null,”offset”:0}],
patterns: {
d: “dd.MM.yyyy”,
D: “dddd, d. MMMM yyyy”,
t: “HH:mm”,
T: “HH:mm:ss”,
f: “dddd, d. MMMM yyyy HH:mm”,
F: “dddd, d. MMMM yyyy HH:mm:ss”,
M: “dd MMMM”,
Y: “MMMM yyyy”
}
}
}
});}( this ));
$(“#jqxCalendar”).jqxCalendar({ width: ‘250px’, height: ‘250px’, theme: ‘darkblue’ });
$(“#jqxCalendar”).jqxCalendar({ culture: ‘tr-TR’ });
i made my calendar Turkish by using this i am sure you can change fr-FR and some other changes. Then you can have french calendar.
-
AuthorPosts