Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
593 views

How to decide between _init and _create in jQuery UI widget?

I think I understand the difference between _create and _init in widget definitions (see for instance this question), but I'm still not certain about the purpose for the distinction. What sorts of ...
5
votes
4answers
1k views

Building jQuery UI Plugins

Beyond the official documentation, are there any recommended resources for learning to build jQuery plugins. I'm particularly interested in building plugins for the UI libary. I've been looking at ...
3
votes
1answer
4k views

jQuery UI datepicker translation

How can I translate the datepicker from jQuery UI into an other language (german for exaple)?
2
votes
1answer
54 views

jQuery UI 1.8.17 and selectmenu

The answer to this question will probably give me a "doh!" moment, but where can I find a working selectmenu plugin that work with a late(ish) jquery ui version? Iv tried from all of these places, ...
2
votes
3answers
1k views

jQuery UI: Best way to load HTML markup?

What's the best way to load HTML markup for a custom jQuery UI widget? So far, I've seen elements simply created using strings (i.e. $(...).wrap('<div></div>')) which is fine for ...
1
vote
0answers
137 views

jQuery UI Autocomplete how to implement Must Match in existing setup?

I have the following code and am curious as how to force the input to match the contents of the autocomplete: $("#foo").autocomplete({ source: function( request, response ) { $.ajax({ ...
1
vote
4answers
835 views

Is jQuery UI missing a state?

The jQuery UI widgets seem to have inactive, active, and hover states, but lack a depressed (clicked-and-held) state. Is this an oversight? Just about every modern UI I can think of have a depressed ...
0
votes
2answers
381 views

jQuery UI Accordion and paging

Has anyone had any luck getting any sort of paging plugin to work with the jQuery UI Accordion? When I use SimplePager with it everything breaks.
0
votes
0answers
104 views

jquery-ui plugin instancing

I am making a jquery-ui tagging widget. Demo here I have an issue that, When there is multiple instances of the plugin on the page, if you click on any <ul> that the plugin has been called on ...
0
votes
1answer
141 views

destroying jquery ui plugin instances

I have a tagging plugin. The plugin is getting used on an element of a form that is generated via ajax. something like ... success : function(data) { $.lightbox(data); $('#groups').tagit(); } ...
0
votes
2answers
909 views

jQueryUI DatePicker YearRange and ChangeYear problems

I have a datepicker on an application form. We only allow applications where the date of birth is within a certain age range. I enabled ChangeYear and set the YearRange to "-65:-16". The problems I am ...
0
votes
3answers
144 views

jquery multiple plugins on same form

Can someone look at this code. I am using two plugins in the form. One to validate form fields and other to style form fields. Form validation validates form if I am comment out form styling code. ( ...
0
votes
1answer
84 views

Panelbar like in JotForm.com?

Jotform.com uses a nice panel bar, the navigation system in the left side. It looks polished and is rich in functionality. The items have a highlight and have help '?' functionality which display a ...
0
votes
1answer
3k views

jQuery splitbutton

Has anyone taken the jQuery split-button buttonset() functionality to make a ready-to-use SplitButton plug-in with the dropdown-menu functionality already built-in, and which is also theme-savvy?
0
votes
2answers
30 views

Where to search for jQuery plug-ins for specific functionality?

Is there a jQuery plug-in clearing house or repository? How do you find the functionality you are looking for? My search in particular is to display events on a timeline and to do faceted searching, ...
0
votes
2answers
535 views

How to use Jquery UI in my Custom Function? (Autocomplete)

I want to create a function to simplify configuration of jQuery UI AutoComplete. Here is my function code: (function($) { $.fn.myAutocomplete = function() { var cache = {}; var ...
0
votes
1answer
29 views

merging json in jquery-ui

What function does jquery ui use to override the default options passed to a plugin on init? My plugin has an option that defaults to "false" and if you specify "true" it does something else. And if ...
0
votes
1answer
377 views

How to wrap very long text in jgrowl

How do I wrap very long text in jGrowl? Right now, if the text is long it just tosses out of the page. Thanks.
0
votes
1answer
598 views

jQuery/ jQueryUI plug-in tutorial

I've got a Javascript UI component I wrote near a year ago, I've just taken another look at it and, to be frank, it could do with a re-write to make it nice and generic. The implementation uses ...