jQuery UI is the official jQuery user interface library. It provides interactions, widgets, effects, and theming for creating highly interactive web applications.
113
votes
8answers
52k views
Can the jQuery UI Datepicker be made to disable Saturdays and Sundays (and holidays)?
I use a datepicker for choosing an appointment day. I already set the date range to be only for the next month. That works fine. I want to exclude Saturdays and Sundays from the available choices. ...
33
votes
6answers
8k views
What is the need of JSF. When UI can be achieved from css html javascript jQuery?
I was reading about JSF that its a UI framework and provides some UI components. But how is it better or different from number of components that can are available from extjs or jQuery or combination ...
133
votes
20answers
105k views
jQuery UI DatePicker to show month year only
I am using jQuery date picker to display the calendar all over my app. I want to know if I can use it to display the month and year (May 2010) and not the calendar?
177
votes
18answers
104k views
jQuery UI Dialog with ASP.NET button postback
I have a jQuery UI Dialog working great on my ASP.NET page:
jQuery(function() {
jQuery("#dialog").dialog({
draggable: true,
resizable: true,
show: 'Transfer',
...
100
votes
10answers
43k views
jQueryUI: how can I custom-format the Autocomplete plug-in results?
I'm using jQuery UI Autocomplete plug-in. Is there a way to highlight search character sequence in drop-down results?
For example, if I have data: "foo bar" it and I search for "foo" I get "foo ...
273
votes
6answers
86k views
Downloading jQuery CSS from Google's CDN
I am planning on using Google to download the jQuery lib for both UI and Core. My question is, do they allow me to download the CSS for it or should I have to host it myself?
Also if I use Google to ...
73
votes
9answers
19k views
Knockout with Jquery UI datepicker
I'm trying to use knockoutjs with jquery UI and I have an input element with a datepicker attached. I'm running knockout.debug.1.2.1.js and it seems that the change event is never being caught by ...
334
votes
18answers
124k views
Remove close button on jQueryUI Dialog?
How do I remove the close button (the X in the top right corner) on a dialog box created by jQueryUI?
33
votes
8answers
22k views
jQuery Drag And Drop Using Live Events
I have an application with a long list that changes frequently, and I need the items of that list to be draggable.
I've been using the jQuery UI draggable plugin, but it is slow to add to 400+ list ...
111
votes
10answers
75k views
How to disable text selection using jQuery?
Does jQuery or jQuery-UI have any functionality to disable text selection for given document elements?
144
votes
4answers
129k views
Check if checkbox is checked with jQuery
How can I check if a checkbox in a checkbox array is checked using the id of the checkbox array?
I am using the following code, but it always returns the count of checked checkboxes regardless of id.
...
110
votes
14answers
174k views
jQuery UI DatePicker - Change Date Format
I am using the UI DatePicker from jQuery UI as the stand alone picker.. i have this code
<div id="datepicker"></div>
And the follow JS
$('#datepicker').datepicker();
When i try to ...
41
votes
5answers
39k views
Javascript Drag and drop for touch devices [closed]
I am looking for a drag & DROP plugin that works on touch devices.
I would like similar functionality to the jQuery UI plugin which allows "droppable" elements:
...
43
votes
6answers
23k views
jQuery UI Autocomplete widget search configuration
I'm looking into using the jQuery UI autocomplete widget to implement user lookup by first or last name. It looks like by default autocomplete looks up words by character sequence no matter its ...
11
votes
1answer
18k views
How to change the color of jqGrid cell?
I use the following line at the $(document).ready(
$("#stSearchTermsGrid").setCell(2, 2, '', {color:'red'}) ;
but it doesn't work. Did I write it in a wrong way or placed it in the wrong place.
I ...