Click here to Skip to main content
15,881,794 members
Home / Discussions / JavaScript
   

JavaScript

 
Questionjquery tabslideout plugin and wired behavior Pin
Tridip Bhattacharjee9-Dec-12 21:13
professionalTridip Bhattacharjee9-Dec-12 21:13 
AnswerRe: jquery tabslideout plugin and wired behavior Pin
Mayor Daily17-Dec-12 4:22
Mayor Daily17-Dec-12 4:22 
GeneralRe: jquery tabslideout plugin and wired behavior Pin
Tridip Bhattacharjee18-Dec-12 0:55
professionalTridip Bhattacharjee18-Dec-12 0:55 
QuestionNeed help understanding binding Pin
Steve Bondy7-Dec-12 14:00
Steve Bondy7-Dec-12 14:00 
QuestionText replace Pin
rakeshs3126-Dec-12 23:06
rakeshs3126-Dec-12 23:06 
AnswerRe: Text replace Pin
Richard MacCutchan7-Dec-12 0:43
mveRichard MacCutchan7-Dec-12 0:43 
GeneralRe: Text replace Pin
rakeshs3129-Dec-12 5:40
rakeshs3129-Dec-12 5:40 
QuestionJQuery datePicker SelectMultiple format dd/mm/yy Pin
xnaLearner6-Dec-12 0:37
xnaLearner6-Dec-12 0:37 
Hey Guys,
Got the datePicker working to select multiple dates. When the user selects multiple dates and closes the calendar the textbox displays the dates in the format:
Thur Jan 03 2013 00:00:00 GMT +0000
Fri Jan 03 2013 00:00:00 GMT +0000
Sat Jan 04 2013 00:00:00 GMT +0000,

My Code:
JavaScript
<script>

           $("#HolidayDate").addClass('date-pick');
           $('.date-pick').datePicker//({dateFormat: 'dd-mm-yy'}).val();
           (
                   {
                       createButton: false,
                       displayClose: true,
                       closeOnSelect: false,
                       selectMultiple: true,
                   }
           )
           .bind(
               'click',
               function () {
                   $(this).dpDisplay();
                   this.blur();
                   return false;
               }
           )
           .bind(
               'dateSelected',
               function (e, selectedDate, $td, state) {
                   console.log('You ' + (state ? '' : 'un') // wrap
                       + 'selected ' + selectedDate);
               }
           )
           .bind(
               'dpClosed',
               function (e, selectedDates) {
                   console.log('You closed the date picker and the ' // wrap
                       + 'currently selected dates are:');
                   console.log(selectedDates);
                   $('#HolidayDate').val( selectedDates );
               }
           );

   </script>

----------------------------------------

However I would like the date to display as dd-mm-yy.
If I use the commented out line
JavaScript
$('.date-pick').datePicker//({dateFormat: 'dd-mm-yy'}).val();


The textbox will return the date in the correct format but now it only allows me to select one date at a time.

Please advice?

Thanks
AnswerRe: JQuery datePicker SelectMultiple format dd/mm/yy Pin
srinivas nv6-Dec-12 21:50
srinivas nv6-Dec-12 21:50 
GeneralRe: JQuery datePicker SelectMultiple format dd/mm/yy Pin
xnaLearner10-Dec-12 0:04
xnaLearner10-Dec-12 0:04 
QuestionDelete selected rows by table id using javascript Pin
Member 88023075-Dec-12 8:05
Member 88023075-Dec-12 8:05 
AnswerRe: Delete selected rows by table id using javascript Pin
Deepak Kr15-Dec-12 18:45
Deepak Kr15-Dec-12 18:45 
GeneralRe: Delete selected rows by table id using javascript Pin
Member 88023076-Dec-12 6:20
Member 88023076-Dec-12 6:20 
AnswerRe: Delete selected rows by table id using javascript Pin
Graham Breach6-Dec-12 21:41
Graham Breach6-Dec-12 21:41 
QuestionHTML5 Javascript Issue Pin
#realJSOP3-Dec-12 1:09
mve#realJSOP3-Dec-12 1:09 
AnswerRe: HTML5 Javascript Issue Pin
Graham Breach3-Dec-12 5:00
Graham Breach3-Dec-12 5:00 
GeneralRe: HTML5 Javascript Issue Pin
#realJSOP3-Dec-12 5:22
mve#realJSOP3-Dec-12 5:22 
GeneralRe: HTML5 Javascript Issue Pin
Graham Breach3-Dec-12 6:29
Graham Breach3-Dec-12 6:29 
GeneralRe: HTML5 Javascript Issue Pin
#realJSOP3-Dec-12 6:40
mve#realJSOP3-Dec-12 6:40 
GeneralRe: HTML5 Javascript Issue Pin
Graham Breach3-Dec-12 6:48
Graham Breach3-Dec-12 6:48 
GeneralRe: HTML5 Javascript Issue Pin
#realJSOP3-Dec-12 9:09
mve#realJSOP3-Dec-12 9:09 
GeneralRe: HTML5 Javascript Issue Pin
Graham Breach3-Dec-12 11:02
Graham Breach3-Dec-12 11:02 
GeneralRe: HTML5 Javascript Issue Pin
#realJSOP3-Dec-12 15:20
mve#realJSOP3-Dec-12 15:20 
GeneralRe: HTML5 Javascript Issue Pin
Media2r18-Dec-12 0:51
Media2r18-Dec-12 0:51 
GeneralRe: HTML5 Javascript Issue Pin
BrainiacV18-Dec-12 3:46
BrainiacV18-Dec-12 3:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.