jquery-ui

jquery ui datepicker when used in inline mode shows multiple months in single verticle column

Hi I am using jquery ui 1.6 datapicker. It is working fine in popup mode. I wanted to use in a way so that a user can give multiple input using datepicker which shows multiple months. But in popup mode datepicker don't accept multiple input at once. Therefore I thought of using in inline mode. but in this mode it is showing all months i...

A JQueryUI plugin for an eclipse environment

I am looking for way that I could at least has some intellisence in my Zend Studio Evironment (Eclipse Based) for my JQueryUI development to enhance my productivity. Are there any plugins out there whether free or commercial that I could used? ...

Can I place a jQuery UI dialog box in dynamically loaded HTML?

I have the following code for a simple jQuery UI dialog box. When I place this on a webpage, it works beautifully. However, If I call I insert this code dynamically onto a page using an AJAX function, it doesn't work and the dialog div just appears on the page. Is there any way to make it work in dynamically inserted code? File Dialo...

How to replicate the dialog functionality of jQuery UI in Jetpack?

I'm trying to get a very basic and simple dialog in my Javascript, actually I'm trying to replicate something very similar to this example from jqueryui website: <script type="text/javascript"> $(function() { $("#dialog").dialog({ bgiframe: true, height: 140, modal: ...

Accessible semantic jQuery tabs plugin

Hello, Just a quick question to see if anyone knows of any jquery tabs plugins that run based on a similar structure to: <div class="tabs"> <div> <h4>Tab one</h4> <p>Lorem Ipsum</p> </div> <div> <h4>Tab two</h4> <p>Lorem Ipsum</p> </div> </div> Where the plugin grabs the title of the t...

Exception message to UI

Hello, I open a jQuery dialog, in this box I do a save/cancel. To Save, I call my controller, make some validation, save or throw Exception (MyPersonalException). If there is exception, I return an another View (the "MessageError" view) to display in the popup. I just want to see in the modal box the message available in "MyPersonalExce...

jquery ui dialog top always > 0

hi i'm using the jquery ui dialog for viewing a form. this form is mutch height and so the top of the dialog is 0px I want change this beacuse in the top of my window there is a menu bar is possible? thanks ...

Jquery-UI tabs not working

So i'm trying to make tabs with the JQuery UI framework, but I can't get them to work. It just shows up as a bulleted list, and then with the divs all under each other. I read on another post that you needed some sort of css/theming which i didn't have before, so i downloaded one with a custom theme. i unzipped it in my media folder and ...

Jquery: dialog box only shows once per click

Hello, I have a series of "links & divs" like these: <a class="pop" href="popup.asp?PD=12>Hotel XXX</a> <div class="details" title="Hotel XXX"></div> <a class="pop" href="popup.asp?PD=52>Hotel YYY</a> <div class="details" title="Hotel YYY"></div> ... I'm using the following javascript, and it works very nice except the fact that I c...

jquery date picker split into multiple fields

I have the usual Jquery datepicker working fine. But I want to feed it into a set of selectboxes rather than one textfield. I have had success feeding it into one select field with a specific format but am unsure how to feed all three into different fields with different formats. $(document).ready(function(){ $("#search_startdate")....

Google contacts behavior using jquery

Google Contacts lets you search your contacts by typing in an input box while recurrently update an other part on the screen with the results What would be a good approach to imitate this behavior using jquery? I thought about starting from jquery Autocompleter and change it accordingly, after all, its behavior is not very different (m...

Revert values back when changing tabs in jQuery

I use jQueryUI's tabs and when a user changes a form in the tab, it promprts the user that a change has been made. My question is, how do I revert the values before being changed when the user presses 'OK' on my confirm() prompt? ...

Initiate jQuery UI Dialog from a result of AJAX call

I have Page A which calls Page B using AJAX. Page B will be put in a div container in Page A. Within the result (which is Page B), there's a code that will initiate a jQuery UI Dialog. The div for the dialog is also in Page B. However, it doesn't work. I'd have to put the initiation code in Page A. So, if I want to put the initiation cod...

JQuery Incremental Search

I'm looking for a JQuery plugin that will assist in an incremental search e.g. - the user starts typing into a textbox and an AJAX call is made to dynamically get results as the user types. ...

JQuery hide div - resulting in javascript error

I have the following html in page: <head> <script src="jquery-1.3.2.min.js" type="text/javascript"></script> <script> function hideIt() { $(this).hide("slow"); return true; } </script> </head> <body> <div onclick="hideIt();"> hello world </div> </body> When I click ...

Customizing jquery theme for differnt component

There are different UI jQuery components available. If i am using a particular jquery theme and i want to customize the css of any UI component (for example jQuery tab) My question is how to customize the css of jQuery tab without affecting other components? The problem i am facing is If i customize the tab css, my css change is parti...

jQuery UI Tabs - link to tab

Hi There, I am trying to add links to skip to step 4 on my jQuery UI tabs. Can anyone see why this is not working? <script type="text/javascript" src="/js/jquery-1.3.2.min.js"></script> <script type="text/javascript" src="/js/jquery-ui-1.7.custom.min.js"></script> <script type="text/javascript"> $(function() { var $tabs =...

Elaborate documentation / tutorial for using jQuery UI stylesheets in website.

Hello. I'm using jQueryUI in my web application. I'm planning to make the most of the out-of-the-box styling provided as part of the jQueryUI theme for my other elements of the application. However, I am struggling to find adequate documentation about using the styles in ui.core.css & ui.theme.css files. I am looking for elaborate doc...

Problem with nested jQuery sortable lists when using toarray

Hi I currently have a sortable UL wih multiple LI's, each one of which may have a a sortable UL within it. I can sort the nested ULs fine using sortable( 'toArray' ). Each LI has an ID which I can read back on the server to determine the order. The problem is that this just not work on the outer UL, as toarray picks up every LI, includin...

jQuery-UI Dialog Memory Leaks

I'm working with IE7 and some jQuery dialogs and I'm running into about a 6meg leak per dialog opened. I'm assuming it's to do with closures, but so far everything I've done to remove them haven't helped. At this point I think I've taken care of all the closures except on for a callback function I pass in, but it's still leaking 6 megs e...