I saw js/protoypes-packed.js and assumed you were also using Prototype JS, sorry if that was an incorrect assumption.
Please, for us to help you must help us by setting up a demo page clearly demonstrating the datepicker not working. There are so many other scripts at play and the datepicker code you've presented looks fine a demo page is invaluable. On Thursday, June 18, 2009, Saurabh <[email protected]> wrote: > but everything i am using here is of jquery > > <script type="text/javascript" src="js/jquery- > ui-1.7.1.custom.min.js"></script> > <script type="text/JavaScript" src="js/jquery.cookies-packed.js"></ > script> > <script type="text/javascript" src="js/prototypes-packed.js"></script> > <script type="text/javascript" src="js/json-packed.js"></script> > <script type="text/javascript" src="js/jquery.truemouseout- > packed.js"></script> > <script type="text/javascript" src="js/daemachTools-packed.js"></ > script> > <!--script type="text/javascript" src="js/jquery.tableFilter- > packed.js"></script--> > <script type="text/javascript" src="js/jquery.tableFilter.js"></ > script> > <script type="text/javascript" src="js/jquery.tableFilter.aggregator- > packed.js"></script> > <script type="text/javascript" src="js/jquery.tableFilter.columnStyle- > packed.js"></script> > > is it possible that jquery plugins conflicts with each other? > > I also made following changes > > <script language="javascript"> > jQuery.noConflict(); > jQuery(document).ready(function () { > jQuery("#dob").datepicker( > {showOn: "button", > buttonImage: "images/icons/calendar.png", > buttonImageOnly: true, > dateFormat:"yy-mm-dd", > changeMonth: true, > changeYear: true > }); > jQuery("#maday").datepicker( > { > showOn: "button", > buttonImage: "images/icons/ > calendar.png", > buttonImageOnly: true, > dateFormat:"yy-mm-dd", > changeMonth: true, > changeYear: true > } > ); > jQuery("#datatable").eq(0).tableFilter({sortOnLoad:1}); > }) > </script> > > but still same behavior. > > please help > > thanks > saurabh > > On Jun 17, 4:42 pm, Ca-Phun Ung <[email protected]> wrote: >> Ah, right... it's clashing with other libraries. Try this: >> >> http://docs.jquery.com/Using_jQuery_with_Other_Libraries >> >> Btw, remember to remove that trailing comma aswell. ;) >> >> On Wed, Jun 17, 2009 at 7:37 PM, Saurabh <[email protected]> wrote: >> >> > hi, >> >> > i will paste the code here ....i cant show the live page as its >> > password protected. >> >> > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:// >> >www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> >> > <html xmlns="http://www.w3.org/1999/xhtml"> >> > <head> >> > <script src="js/jquery-1.3.2.js" type="text/javascript" >> > charset="utf-8"></script> >> > <link rel="stylesheet" type="text/css" href="styles/master.css" >> > media="screen"/> >> > <link rel="stylesheet" type="text/css" href="styles/tableFilter.css"> >> > <link rel="stylesheet" type="text/css" href="styles/ >> > tableFilter.aggregator.css"> >> > <link type="text/css" href="styles/smoothness/jquery- >> > ui-1.7.1.custom.css" rel="stylesheet" /> >> > <script type="text/javascript" src="js/jquery- >> > ui-1.7.1.custom.min.js"></script> >> > <script type="text/JavaScript" src="js/jquery.cookies-packed.js"></ >> > script> >> > <script type="text/javascript" src="js/prototypes-packed.js"></script> >> > <script type="text/javascript" src="js/json-packed.js"></script> >> > <script type="text/javascript" src="js/jquery.truemouseout- >> > packed.js"></script> >> > <script type="text/javascript" src="js/daemachTools-packed.js"></ >> > script> >> > <!--script type="text/javascript" src="js/jquery.tableFilter- >> > packed.js"></script--> >> > <script type="text/javascript" src="js/jquery.tableFilter.js"></ >> > script> >> > <script type="text/javascript" src="js/jquery.tableFilter.aggregator- >> > packed.js"></script> >> > <script type="text/javascript" src="js/jquery.tableFilter.columnStyle- >> > packed.js"></script> >> >> > </head> >> > <body> >> > <br> >> > <script language="javascript"> >> > $(document).ready(function () { >> > $("#dob").datepicker( >> > {showOn: "button", >> > buttonImage: "images/icons/calendar.png", >> > buttonImageOnly: true, >> > dateFormat:"yy-mm-dd", >> > changeMonth: true, >> > changeYear: true >> > }); >> > $("#maday").datepicker( >> > { >> > showOn: "button", >> > buttonImage: "images/icons/calendar.png", >> > buttonImageOnly: true, >> > dateFormat:"yy-mm-dd", >> > changeMonth: true, >> > changeYear: true, >> > } >> > ); >> > > ... >> >> read more » > > > -- Ca-Phun Ung + http://yelotofu.com + hongkong, zce, jquery, jqueryui, php, css, html --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en -~----------~----~----~----~------~----~------~--~---
