First of all I would like to say this does this on my site and on Boonex.Us and only in IE and not FF....
When you create an event and go to pick the date the calendar will not pop-up...
I have looked and tried several things to fix with no luck...
|
The calendar pops up, it just pops up off the screen somewhere. If you zoom out, then click a date input field, you'll see it.
I tried to have a quick look at this, but what I saw nearly brought me to tears. I can't believe what a bewildering heap of files and code is in place, just to enter a date. You have a Zapatec calendar plugin, that is somehow tied in with have a dozen jquery scripts. Geezus.... talk about bloatware.
I wonder how long this problem has been around. Almost everyone here, including myself, is so used to using Firefox, that no one ever bothers to look at their site in IE. Can't say I blame them though.... IE really is a colossal P.O.S.
My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
Agree I aminly use FF but when testing I use every browser I can get my hand on... And people as few as they might be still use IE...
Thanks...
|
Hello,
I have the same problem and apparently this fix has already been uplied, but where can i find this fix? and how do i apply it?
|
Hello,
I have the same problem and apparently this fix has already been uplied, but where can i find this fix? and how do i apply it?
Suggest you wait for the 7.0.5 release
My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
|
There are none so blind as those that will not see. |
I was experiencing the calendar pop-up issue in all browsers. I found that Update 7.0.5 resolved this issue. |
After implementing changeset 14826, the issue still exists. Date pop-up in events is still not showing :( |
After implementing changeset 14826, the issue still exists. Date pop-up in events is still not showing :(
Got the same problem; IE9 and Netscape 9.0.0.6 --> No calendar popup. It is impossible even to type the date to field(s) ie. you can not create an event!
BR: Jarmo |
I was experiencing the calendar pop-up issue in all browsers. I found that Update 7.0.5 resolved this issue.
Sorry but it didn't. I have tested with IE9, Netscape, Chrome and Firefox with 7.0.5. and I get everytime the same "undefined dateE1" --> No popup calendar. The worst is, that you can not enter the date by hand either. Completely useless module as it is now.
BR: Jarmo |
The PopUp works ONLY in English language mood. Not for example in Finnish. It simply does not fire up. And when you can not give the date an time manually it means NO EVENTS!
Anyone? PLEASE!
BR: Jarmo |
Can't reproduce.
I've tried different languages and it works fine in all cases.
Please try to reproduce it on demo.boonex.com: http://www.boonex.com/demo
The PopUp works ONLY in English language mood. Not for example in Finnish. It simply does not fire up. And when you can not give the date an time manually it means NO EVENTS!
Anyone? PLEASE!
Rules → http://www.boonex.com/terms |
The PopUp works ONLY in English language mood. Not for example in Finnish. It simply does not fire up. And when you can not give the date an time manually it means NO EVENTS!
Anyone? PLEASE!
Same problem with my instalation of D7.0.9. , the date popup is working under English language and not under Croatian language. Any solution for this issue?
|
The PopUp works ONLY in English language mood. Not for example in Finnish. It simply does not fire up. And when you can not give the date an time manually it means NO EVENTS!
Anyone? PLEASE!
Same problem with my instalation of D7.0.9. , the date popup is working under English language and not under Croatian language. Any solution for this issue?
Can you provide link to your site and sample login (via private message) to test it ?
Rules → http://www.boonex.com/terms |
PM sent. BTW, th link to my site is http://zoomanija.com |
It looks like Croatian language file for the calendar is not complete - this cause JS error and calendar is not shown.
You can translate english language file to Croatian:
plugins/jquery/langs/calendar-en.js
and save it as:
plugins/jquery/langs/calendar-hr.js (overwriting old one)
Please donate your translation and we will include it in upcoming version, so you will not need to update it after each Dolphin upgrade, also you will help other Croatian people.
Rules → http://www.boonex.com/terms |
Many thanks AlexT! I have translated the calendar to Croatian language fully and now it is working fine :)
The translated file is in the attachment.
BTW, where is located the pop-up calendar lang file for the sign-up? I want to translate it as it is only in English.
|
Thank you for translation, it is in Dolphin now too - http://www.boonex.com/trac/dolphin/ticket/2785
To translate calendar popup in join form you need to translate plugins/jquery/ui.datepicker-ru.js file, then change the code in inc/classes/BxDolForm.php file:
$aJs = array(
'jquery.dynDateTime.js',
'plugins/jquery/langs/|calendar-' . (isset($aCalendarLangs[$GLOBALS['sCurrentLanguage']]) ? $GLOBALS['sCurrentLanguage'] : 'en') . '.js',
'ui.core.js',
'ui.slider.js',
'ui.datepicker.js'
);
if (isset($aCalendarLangs[$GLOBALS['sCurrentLanguage']]) && 'hr' == isset($aCalendarLangs[$GLOBALS['sCurrentLanguage']]))
$aJs = array_merge($aJs, array('ui.datepicker-hr.js'))
Green code was added near ~165 line.
Rules → http://www.boonex.com/terms |
Hm... Translated the ui.datepicker-ru.js and uploade it as ui.datepicker-hr.js. After editing BxDolForm.php I'm getting the error: Parse error: syntax error, unexpected T_VARIABLE in /home/mydir/public_html/inc/classes/BxDolForm.php on line 162 |
Please put ";" at the end of this line:
$aJs = array_merge($aJs, array('ui.datepicker-hr.js'));
It looks like it is missing.
Hm... Translated the ui.datepicker-ru.js and uploade it as ui.datepicker-hr.js. After editing BxDolForm.php I'm getting the error: Parse error: syntax error, unexpected T_VARIABLE in /home/mydir/public_html/inc/classes/BxDolForm.php on line 162
Rules → http://www.boonex.com/terms |
Didn't quite work. Now I'm getting this error
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/zen999/public_html/inc/classes/BxDolForm.php on line 175
|
Can you post how your inserted code looks like ? and what is around 175 line ?
Also I have some feedback that this solution works - http://www.boonex.com/forums/topic/DateControl-format-for-different-countries.htm
Didn't quite work. Now I'm getting this error
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/zen999/public_html/inc/classes/BxDolForm.php on line 175
Rules → http://www.boonex.com/terms |