-
12 May 2008 10:59 PM #101
-
13 May 2008 12:44 AM #102
I create language-file for Russian locale and with Russian holidays, try it
-
13 May 2008 12:56 AM #103Extensions:
Ext.ux.DatePickerPlus (Multimonth,Multiselect,...)
Ext.ux.menu.StoreMenu - Ajax Store as menu-item config
Extended Window - Aero Shadows, nested grayscaled modal windows
Ext.MessageBox.promptCombo/promptRadio/promptCheckbox
Ext.ux.plugin.triggerfieldTooltip (for Comboboxes, Datefields...)
Ext.util.MD5
Ext.util.Utf8 (encode/decode)
Ext.util.base64 (encode/decode)
Using:
ExtJS 3.4.1.1/4.2
XPsp3/W7sp1
IE8/9/10
FF 20
Chrome 26
-
13 May 2008 1:24 AM #104
-
13 May 2008 1:32 AM #105
yes, because the old routine took the startDay Parameter from the local Files if nothing is delivered to the getStartOfWeek function (which was the case) and ignored any given startday to the widget itself. That was the reason i didn't realized the bug before (because i was shamely testing in only one language....
)Extensions:
Ext.ux.DatePickerPlus (Multimonth,Multiselect,...)
Ext.ux.menu.StoreMenu - Ajax Store as menu-item config
Extended Window - Aero Shadows, nested grayscaled modal windows
Ext.MessageBox.promptCombo/promptRadio/promptCheckbox
Ext.ux.plugin.triggerfieldTooltip (for Comboboxes, Datefields...)
Ext.util.MD5
Ext.util.Utf8 (encode/decode)
Ext.util.base64 (encode/decode)
Using:
ExtJS 3.4.1.1/4.2
XPsp3/W7sp1
IE8/9/10
FF 20
Chrome 26
-
17 May 2008 4:14 PM #106
Event Dates
Event Dates
I am having some issues with getting either the confnig or the setEventDates functions. i get no errors but i still see no results, are there default properties I have to set? I am using the calendar with one month, very basic setup.
-
18 May 2008 10:43 AM #107
This is fixed by the upcoming update.
i still need to fully test the new range select routine which support hidden months, but everything else works so i expect the update to release soon (yes, i already said that a few days ago, but i really had issues which i dont want you to get mad with
..)Extensions:
Ext.ux.DatePickerPlus (Multimonth,Multiselect,...)
Ext.ux.menu.StoreMenu - Ajax Store as menu-item config
Extended Window - Aero Shadows, nested grayscaled modal windows
Ext.MessageBox.promptCombo/promptRadio/promptCheckbox
Ext.ux.plugin.triggerfieldTooltip (for Comboboxes, Datefields...)
Ext.util.MD5
Ext.util.Utf8 (encode/decode)
Ext.util.base64 (encode/decode)
Using:
ExtJS 3.4.1.1/4.2
XPsp3/W7sp1
IE8/9/10
FF 20
Chrome 26
-
20 May 2008 3:34 AM #108
Version 1.1 RC4 released
Version 1.1 RC4 released
ok, here's the promised update. I hope you all will get satisfied..

Enhancements in short:
(see first post for full release notes, download and updated demopage):
- DateFieldPlus now also supports multiselection (thanks to Nohcs777)
- Range selection is now also possible for a wider period than only the visible months (suggested by jo2008)
- New Previous/Next Year Buttons and ability to disable the monthpicker
- Added KeyNavigation and selection of dates
- Ability to show a Letter instead of the current date if a date has been disabled
- Added russian locale (thanks to WhiteRussian)
- BUGFIX: setEventDates did not update the viewport (reported by aacraig)
- BUGFIX: Array-Cloning was done in a wrong way (reported by lpfLoveExt)
- BUGFIX: weekselection was wrong when a different startDay was given (reported by WhiteRussian)
Try DateField #3 on the Demopage for all new features
Have fun..Extensions:
Ext.ux.DatePickerPlus (Multimonth,Multiselect,...)
Ext.ux.menu.StoreMenu - Ajax Store as menu-item config
Extended Window - Aero Shadows, nested grayscaled modal windows
Ext.MessageBox.promptCombo/promptRadio/promptCheckbox
Ext.ux.plugin.triggerfieldTooltip (for Comboboxes, Datefields...)
Ext.util.MD5
Ext.util.Utf8 (encode/decode)
Ext.util.base64 (encode/decode)
Using:
ExtJS 3.4.1.1/4.2
XPsp3/W7sp1
IE8/9/10
FF 20
Chrome 26
-
2 Jun 2008 1:28 PM #109
Hello,
great Extension!!
should it be possible to use setEventDate as this :
setEventDate(arDate, arText, arCls)
?
arDate and arText would be extract from a store like this :
var arDate = this.store.collect('date_event');
var arText = this.store.collect('text_event');
and arCls would be fixed or extract from the store too (if there are different kind of events)...
Thanks in advance
-
2 Jun 2008 9:17 PM #110
this can already be achieved as follows:
PHP Code://adjust this to the id of the Datepickerplus-Component
var dpp = Ext.getCmp('myDatepickerplus');
/*
init the eventDates Function to return an internal fixed Array called "edArray", that can be changed outside
*/
dpp.setEventDates([]);
//Add a Date as desired
dpp.edArray.push({
date: arDate,
text: arText,
cls: arCls
});
//update the viewport if rendered
if (dpp.rendered) {
dpp.update(dpp.activeDate);
}
Extensions:
Ext.ux.DatePickerPlus (Multimonth,Multiselect,...)
Ext.ux.menu.StoreMenu - Ajax Store as menu-item config
Extended Window - Aero Shadows, nested grayscaled modal windows
Ext.MessageBox.promptCombo/promptRadio/promptCheckbox
Ext.ux.plugin.triggerfieldTooltip (for Comboboxes, Datefields...)
Ext.util.MD5
Ext.util.Utf8 (encode/decode)
Ext.util.base64 (encode/decode)
Using:
ExtJS 3.4.1.1/4.2
XPsp3/W7sp1
IE8/9/10
FF 20
Chrome 26



Reply With Quote