How to use jQuery datepicker as a control parameter for SqlDataSource?

Posted by Matt on Stack Overflow See other posts from Stack Overflow or by Matt
Published on 2010-03-24T16:24:00Z Indexed on 2010/03/24 16:33 UTC
Read the original article Hit count: 869

Filed under:
|
|

I have the need to display a date in this format: dd/mm/yyyy. This is actually being stored in an ASP.NET textbox and being used as a control parameter for a select on the GridView. When the query is run, though, the date format should change to 'd M y' (for Oracle). It is not working. Can someone tell me what I'm doing wrong? Right now I am pushing the "new" format to a invisible label and using the label as my control param:

$(document).ready(function() {
            //datepicker for query, shown traditionally but holding an Oracle-needed format
            $('[id$=txtBeginDate]').datepicker({ minDate: -7 , altFormat: 'd M y' });
            //get alt format
            var altFormat = $('[id$=txtBeginDate]').datepicker("option", "altFormat");
            //set date to be altformat
            $('[id$=lblActualDate]').datepicker("option", "altFormat", 'd M y');
        });

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about ASP.NET