buttonContext parameter for Dialog buttons
The jQuery ajax call allows me to specify the context for my callback. I have a class with several methods, one of which makes the ajax call and another which is passed as the callback. In this case, I pass "this" as my context so that my callback can reference the instantiated object. Another method in the same class creates a dialog with buttons, and again other methods are passed as the callbacks for those buttons. However, I cannot access the class variables in the normal fashion (i.e. using
New markup structure for tabs
The current markup structure required by the tabs widget is not very friendly for the purposes of progressive enhancement (nor for alternative styling in different media -- say, how do you style a tabbed area for print?) Would it be feasible to migrate the markup to the structure proposed on this blog post? (Disclaimer: that's my blog :-)
onAfterChangeMonthYear addition to datepicker
Hello, I made a change to datepicker that may be useful to others, so I'm forwarding the idea for inclusion in the widget. The datepicker widget currently supports onChangeMonthYear callback, but... this gets fired before the calendar view is updated. If the calendar is sitting inside some flexible container that needs programatic resizing (eg. a div inside a Coda slider panel) I can't use this callback to refresh the view. What I needed was a callback to fire after the calendar has been changed,
Jquery UI Ribbon Toolbar request
I need Menus, Toolbars and Ripponbars in all my web projects. But this widgets are not included in the jquery ui lib. Is there any plan to provide more jquery witgets? RibbonToolbar will be fine!!! thx GamBit
Plugin support for themeroller
I would like to see support in themeroller for plugins to define their own UI elements that the user can then style using themeroller, in addition to the standard framework styles. For example, look at the demo for the data tables plugin at: http://www.datatables.net/styling/themes This plugin supports theme roller but the plugin uses additional styles that are not covered by the CSS framework - e.g. the odd/even band colours for the rows of the table. I would like to see an enhancement to themeroller
Include text fields, checks, radios and combos with TR themes
You've about everything else there, why not these things? They are, after all, ubiquitous elements of web sites...
using the submit event with modal form dialog
A way to make the dialog UI modal form demo respect the enter key for form submission Add '<input type=submit style=display:none>' somewhere on the form Add 'onSubmit="return false"' to the form opening tag Put the form validation code in: $("#dialog-form").bind( "submit", function() {... } Change the create button to: 'Create an account': function(){ $(this).trigger('submit'); } Tested and works in IE6/7/8 and FF3+ I think this should be the default operation of a modal dialog and