Hi, after seeing a feature request to have an option to disable the picker (to work faster), I am wondering if we should not add an icon to trigger the picker, instead of its automatic display when clicking the field.
What is more standard these days in terms of UI for date/time entering?
Hi
Dne Thu, 13 Jan 2011 07:43:00 -0500 Marc Delisle marc@infomarc.info napsal(a):
Hi, after seeing a feature request to have an option to disable the picker (to work faster), I am wondering if we should not add an icon to trigger the picker, instead of its automatic display when clicking the field.
What is more standard these days in terms of UI for date/time entering?
I have no idea. What should be indeed fixed is that when losing focus (eg. clicking outsite the chooser without clicking the Done button), the field should not be updated by values from chooser.
On Thu, Jan 13, 2011 at 5:48 PM, Michal Čihař michal@cihar.com wrote:
Hi
Dne Thu, 13 Jan 2011 07:43:00 -0500 Marc Delisle marc@infomarc.info napsal(a):
Hi, after seeing a feature request to have an option to disable the picker (to work faster), I am wondering if we should not add an icon to trigger the picker, instead of its automatic display when clicking the field.
What is more standard these days in terms of UI for date/time entering?
I have no idea. What should be indeed fixed is that when losing focus (eg. clicking outsite the chooser without clicking the Done button), the field should not be updated by values from chooser.
hi,
I think, there should be an icon to trigger for the datepicker control . and it is very easy to place an icon there as it is jQuery UI Control. I will post that solution soon.
--
Michal Čihař | http://cihar.com | http://blog.cihar.com
Protect Your Site and Customers from Malware Attacks Learn about various malware tactics and how to avoid them. Understand malware threats, the impact they can have on your business, and how you can protect your company and customers by using code signing. http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Le 2011-01-13 07:48, Michal Čihař a écrit :
Hi
Dne Thu, 13 Jan 2011 07:43:00 -0500 Marc Delisle marc@infomarc.info napsal(a):
Hi, after seeing a feature request to have an option to disable the picker (to work faster), I am wondering if we should not add an icon to trigger the picker, instead of its automatic display when clicking the field.
What is more standard these days in terms of UI for date/time entering?
I have no idea. What should be indeed fixed is that when losing focus (eg. clicking outsite the chooser without clicking the Done button), the field should not be updated by values from chooser.
According to http://jqueryui.com/demos/datepicker/ you should hit Esc to do that (maybe it's not intuitive enough?) I did not find an option to modify this behavior.
P.S. I will try another time picker (another jQuery UI date picker add-on) because this one has issues with time manual input.
Protect Your Site and Customers from Malware Attacks Learn about various malware tactics and how to avoid them. Understand malware threats, the impact they can have on your business, and how you can protect your company and customers by using code signing. http://p.sf.net/sfu/oracle-sfdevnl
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
On Thu, Jan 13, 2011 at 6:31 PM, Marc Delisle marc@infomarc.info wrote:
Le 2011-01-13 07:48, Michal Čihař a écrit :
Hi
Dne Thu, 13 Jan 2011 07:43:00 -0500 Marc Delisle marc@infomarc.info napsal(a):
Hi, after seeing a feature request to have an option to disable the picker (to work faster), I am wondering if we should not add an icon to trigger the picker, instead of its automatic display when clicking the field.
What is more standard these days in terms of UI for date/time entering?
I have no idea. What should be indeed fixed is that when losing focus (eg. clicking outsite the chooser without clicking the Done button), the field should not be updated by values from chooser.
According to http://jqueryui.com/demos/datepicker/ you should hit Esc to do that (maybe it's not intuitive enough?) I did not find an option to modify this behavior.
go here
http://jqueryui.com/demos/datepicker/#icon-trigger
and if u use this code
<script> $(function() { $( "#datepicker" ).datepicker({ showOn: "button", buttonImage: "images/calendar.gif", buttonImageOnly: true }); }); </script>
then it will triggered when click on image shown next to date field.
P.S. I will try another time picker (another jQuery UI date picker
add-on) because this one has issues with time manual input.
Protect Your Site and Customers from Malware Attacks Learn about various malware tactics and how to avoid them. Understand malware threats, the impact they can have on your business, and how you can protect your company and customers by using code signing. http://p.sf.net/sfu/oracle-sfdevnl
Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
-- Marc Delisle http://infomarc.info
Protect Your Site and Customers from Malware Attacks Learn about various malware tactics and how to avoid them. Understand malware threats, the impact they can have on your business, and how you can protect your company and customers by using code signing. http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Le 2011-01-13 08:39, Adnan a écrit :
On Thu, Jan 13, 2011 at 6:31 PM, Marc Delisle marc@infomarc.info wrote:
Le 2011-01-13 07:48, Michal Čihař a écrit :
Hi
Dne Thu, 13 Jan 2011 07:43:00 -0500 Marc Delisle marc@infomarc.info napsal(a):
Hi, after seeing a feature request to have an option to disable the picker (to work faster), I am wondering if we should not add an icon to trigger the picker, instead of its automatic display when clicking the field.
What is more standard these days in terms of UI for date/time entering?
I have no idea. What should be indeed fixed is that when losing focus (eg. clicking outsite the chooser without clicking the Done button), the field should not be updated by values from chooser.
According to http://jqueryui.com/demos/datepicker/ you should hit Esc to do that (maybe it's not intuitive enough?) I did not find an option to modify this behavior.
go here
http://jqueryui.com/demos/datepicker/#icon-trigger
and if u use this code
<script> $(function() { $( "#datepicker" ).datepicker({ showOn: "button", buttonImage: "images/calendar.gif", buttonImageOnly: true }); }); </script>
then it will triggered when click on image shown next to date field.
Thanks. When saying "I did not find an option" I was not talking about the image icon but about the "clicking outside the chooser..." remark by Michal.
I committed your suggestion (with you as author), but using the existing b_calendar.png icons.
On Thu, Jan 13, 2011 at 8:35 PM, Marc Delisle marc@infomarc.info wrote:
Le 2011-01-13 08:39, Adnan a écrit :
On Thu, Jan 13, 2011 at 6:31 PM, Marc Delisle marc@infomarc.info
wrote:
Le 2011-01-13 07:48, Michal Čihař a écrit :
Hi
Dne Thu, 13 Jan 2011 07:43:00 -0500 Marc Delisle marc@infomarc.info napsal(a):
Hi, after seeing a feature request to have an option to disable the picker (to work faster), I am wondering if we should not add an icon to
trigger
the picker, instead of its automatic display when clicking the field.
What is more standard these days in terms of UI for date/time
entering?
I have no idea. What should be indeed fixed is that when losing focus (eg. clicking outsite the chooser without clicking the Done button), the field should not be updated by values from chooser.
According to http://jqueryui.com/demos/datepicker/ you should hit Esc
to
do that (maybe it's not intuitive enough?) I did not find an option to modify this behavior.
go here
http://jqueryui.com/demos/datepicker/#icon-trigger
and if u use this code
<script> $(function() { $( "#datepicker" ).datepicker({ showOn: "button", buttonImage: "images/calendar.gif", buttonImageOnly: true }); }); </script>
then it will triggered when click on image shown next to date field.
Thanks. When saying "I did not find an option" I was not talking about the image icon but about the "clicking outside the chooser..." remark by Michal.
i see, got it
I committed your suggestion (with you as author), but using the existing b_calendar.png icons.
bundle of thanks !
-- Marc Delisle http://infomarc.info
Protect Your Site and Customers from Malware Attacks Learn about various malware tactics and how to avoid them. Understand malware threats, the impact they can have on your business, and how you can protect your company and customers by using code signing. http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Hi,
2011/1/13 Marc Delisle marc@infomarc.info:
Hi, after seeing a feature request to have an option to disable the picker (to work faster), I am wondering if we should not add an icon to trigger the picker, instead of its automatic display when clicking the field.
What is more standard these days in terms of UI for date/time entering?
I'm not sure if there is a real standard. I see both (icon to show picker, and auto show picker when clicking), but I guess it is OK to have an icon : it doesn't need an extra click (you would have to click the inputfield anyway to set focus) and if you don't want the popup, you can still add (or change) the value manually.
If the popup would allow to manually insert a date, it wouldn't really matter, if there was an icon or an auto-popup.
Greets,
Dieter
-- Marc Delisle http://infomarc.info
Protect Your Site and Customers from Malware Attacks Learn about various malware tactics and how to avoid them. Understand malware threats, the impact they can have on your business, and how you can protect your company and customers by using code signing. http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel