jQWidgets Forums
jQuery UI Widgets › Forums › Editors › DateTimeInput › showCalendarButton chrome browser error
Tagged: calendar, date picker
This topic contains 7 replies, has 3 voices, and was last updated by Peter Stoev 11 years, 5 months ago.
-
Author
-
Hi,
showCalendarButton is displayed at Mozilla but not displayed at Chrome.
Although default value of it is true, I set it to true, but nothing changed.
Is there any solution for it?Hi,
Not sure what you mean. The Calendar button is displayed in Chrome, too and is displayed by default in the current version – 2.8.3.
Best Wishes,
Peter StoevjQWidgets Team
http://www.jqwidgets.com/Hi Peter,
I know is displayed defaultly but unfortunately, it is not displayed at chrome at my project
Hi,
If you have an issue in your project with jqxDateTimeInput, then please send a sample which reproduces it with jQWidgets 2.8.3.
Best Wishes,
Peter StoevjQWidgets Team
http://www.jqwidgets.com/Hi Peter,
It is hard to send code because my directory pathes are mixed.
Unfortutanetly there is problem at chrome.
I am using last version of chrome.
I am using 2.8.1 but I tried with 2.8.3, nothing changed.
Although default is true I again set it to true but calendar button is not displayed at chromevar startDate = spanStartDate.jqxDateTimeInput({ width: ‘120px’,
height: ’25px’,
showCalendarButton: true,
culture: lang,
formatString: “dd/MM/yyyy”
});
container.append(startDate);
container.append(line);
var endDate = spanEndDate.jqxDateTimeInput({ width: ‘120px’,
height: ’25px’,
showCalendarButton: true,
culture: lang,
formatString: “dd/MM/yyyy”
});Hi,
We cannot help you about that as we cannot reproduce the issue locally. In case you wish to provide a small sample which demonstrates the issue, then feel free to send it to support@jqwidgets.com or post it here.
Best Wishes,
Peter StoevjQWidgets Team
http://www.jqwidgets.com/I’ve just run into this issue as well. It appears that if the datetime input is just on a page, it works as intended. But if it’s inside a jqxWindow, the calendar button does not show. I hope this might be fixed soon.
Hi timtate,
The issue from this Topic which is reported 4 months ago is not reproducible with jQWidgets 3.0.3.
You can find a sample below:
<!DOCTYPE html><html lang="en"><head> <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="../../scripts/jquery-1.10.2.min.js"></script> <script type="text/javascript" src="../../scripts/demos.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxdatetimeinput.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcalendar.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxtooltip.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxwindow.js"></script> <script type="text/javascript" src="../../jqwidgets/globalization/globalize.js"></script></head><body> <div id='content'> <script type="text/javascript"> $(document).ready(function () { // Create a jqxDateTimeInput $("#window").jqxWindow({ width: 400, height: 400 }); $("#jqxWidget").jqxDateTimeInput({width: '250px', height: '25px'}); }); </script> <div id="window"> <div>Title</div> <div><div id='jqxWidget'></div></div> </div> </div></body></html>
Best Wishes,
Peter StoevjQWidgets Team
http://www.jqwidgets.com/ -
AuthorPosts
You must be logged in to reply to this topic.