DATEPICKER THIS IS THE CODE
<link type="text/css"
href="JQuary/css/smoothness/jquery-ui-1.7.1.custom.css" rel="stylesheet"
/>
<script type="text/javascript"
src="JQuary/js/jquery-1.3.2.min.js"></script>
<script type="text/javascript"
src="JQuary/js/jquery-ui-1.7.1.custom.min.js"></script>
<script type="text/javascript">
$(function() {
$("input[id$='txtDate']").datepicker({
inline: true
});
});
</script>
<body>
<asp:TextBox ID="txtDate" runat="server" CssClass="style2" Width="125px"
Height="20px"></asp:TextBox>
</body>
On Wed, Apr 15, 2009 at 9:18 PM, MorningZ <[email protected]> wrote:
>
> "its not work"
>
> would be what that doesn't work? any jQuery? the datepicker? any
> UI stuff?
>
>
> On Apr 15, 12:31 pm, bader shehri <[email protected]> wrote:
> > thank you for replay
> >
> > i have only this scripts
> >
> > <link type="text/css"
> > href="JQuary/css/smoothness/jquery-ui-1.7.1.custom.css" rel="stylesheet"
> > />
> > <script type="text/javascript"
> > src="JQuary/js/jquery-1.3.2.min.js"></script>
> > <script type="text/javascript"
> > src="JQuary/js/jquery-ui-1.7.1.custom.min.js"></script>
> >
> > and i try that you said and its not work
> >
> > On Wed, Apr 15, 2009 at 4:43 PM, MorningZ <[email protected]> wrote:
> >
> > > Well, it seems that Jamir was putting something like
> >
> > > <script type="text/javascript" src="datepicker-vsdoc.js"></script>
> >
> > > in his HTML
> >
> > > You do NOT want to put "-vsdoc" in the reference, Studio will
> > > automatically look for that version first
> >
> > > so if you had sitting in a folder:
> >
> > > myscript.js
> > > datepicker.js
> > > datepicker-vsdoc.js
> >
> > > and your references were
> >
> > > <script type="text/javascript" src="myscript.js"></script>
> > > <script type="text/javascript" src="datepicker.js"></script>
> >
> > > then as the real time compiler looks at those two lines it will:
> > > - first look for "myscript-vsdoc.js"... if it doesn't find it, then it
> > > will user "myscript.js"
> > > - then look for "datepicker-vsdoc.js".... it finds that, so it uses
> > > that version of the script instead of "datepicker.js"
> >
> > > this is also an important fact to keep in mind if you want
> > > Intellisense to fully work: Studio has problems with a lot of
> > > plugins (like UI's core), so to get around it, create a blank file and
> > > name is with the -vsdoc convention
> >
> > > so if you have:
> > > - ui.core.js (which was downloaded from UI's site)
> > > then create a blank file as
> > > - ui.core-vsdoc.js
> >
> > > and then Intellisense will effectively "skip" over trying to include
> > > that in Intellisense
> >
> > > On Apr 15, 7:33 am, "you&me" <[email protected]> wrote:
> > > > please tell me how you fix if with details i face this problem and i
> > > > don't know how to do !
> >
> > > > On Mar 8, 8:23 am, Jamir Shaikh <[email protected]> wrote:
> >
> > > > > I just made it work, as soon I posted to the group.
> >
> > > > > The vddoc.js was causing this issue. Removed vsdoc.js, it started
> > > working.
> >
>
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---