Tagged Questions

1
vote
1answer
124 views

Show jQueryUI datepicker on button press without involving input field

In an ASP.NET project, I'm looking for a way to have a jQueryUI datepicker come up when I press a button, then cause a postback when a date is selected. I've gotten the postback part working using ...
1
vote
3answers
730 views

ASP.net - Using a jQuery datepicker in a custom control

I'm trying to use the jquery datepicker - http://jqueryui.com/demos/datepicker/ in a custom control (.ascx). To enable the datepicker, I need to add the following script at the top for an input: ...
0
votes
3answers
231 views

How to call a jquery datetime picker in the image button placed by the textbox control

This is my jquery datetimepicker i want to call this jquery in the image button which is placed nearby the textbox.how should do? <script type="text/javascript"> $(function() { $( ...
0
votes
1answer
580 views

ASP.NET MVC3 Razor Entity Framework - DataFormatString property not working

When i try to create or save a date in the model the validation trows invalid date format instead of respect my format specified in DataFormatString (dd/MM/yyyy). I saw that the framework try to save ...
0
votes
0answers
36 views

Unable to retrieve records in the grid view

I am trying to pull in certain records within a data range into a grid view so that based upon dates picked from a jquery date picker.I ran the query using the query builder and it works great but ...
0
votes
1answer
323 views

JQuery Date Picker issue inside Update Panel

i am using this Sys.WebForms.PageRequestManager.getInstance().add_endRequest(addDataPicker); for my script to load on every post back for JQuery Datepicker. Because i am using updatepanel. Its ...
0
votes
5answers
136 views

Jquery click function is not working in below code..?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <link type="text/css" href="App_Themes/jquery-ui-1.7.3.custom.css" ...
0
votes
3answers
442 views

Getting jQuery datepicker to attach to a TextBox within a ListView

I am using the jQuery Datepicker without any problem for TextBox controls that are non-templated. However, I am unable to get the datepicker to work with a TextBox that is in an EditItemTemplate of a ...
0
votes
5answers
3k views

Why doesn't my jQuery UI datepicker work for postbacks when it works fine on initial page loads?

I've been trying to integrate the jQuery UI Datepicker into our ASP.NET WebForms application. The application uses master pages to provide a common look to all pages, and all of the content pages are ...
0
votes
1answer
88 views

prevent autodropdown by jquery datepicker

when I append jquery datepicker to my asp textbox, by clicking on it, my browser auto shows the history of the dates i typed in a dropdownlist. Can I prevent this? Set textbox to readonly isn't a ...