jquery-ui

typing date into jquery datepicker

Hi, besides being able to select a date from jQuery datepicker widget I also want to be able to type a date into the datepicker's textfield. But every time I type a date and hit enter, datepicker overrides my entry with today's date. I can't figure out how to have datepicker accept typed in entry. thanks, martin ...

jquery sortable cannot be dragged outside of accordion

I have 2 connected sortable lists. One is inside an accordion. When I try to drag items from the sortable in the accordion, the helper disappears as soon as I get outside of the accordion. I can drop to one of the other connected sortables and the item will display, but it just doesn't display while I'm dragging. The accordion also s...

removing div from a jquery sortable

Hi guys, I've developed a "Google-Maps-like" user interface for my intranet where users can add steps to calculated routes and distances. I'm using sortable divs to reorder steps. Now I want to remove steps, but my JavaScript/jQuery code doesn't work at all. Can you help me? My jQuery code: $(document).ready(function() { $("#s...

Providing auto height and width to dailog in jquery UI modal dailog box.

I am trying to put auto height and width to modal dailog box (provided by jquery UI). But some how the position of my dailog is getting disturbed. it is not coming in center. Everytime i click on the link to open the dailog box , the dailog opens at different position. Could anybody please suggest how to resolve this issue... ...

how to submit html form in jquery ui modal dialog itself

I am using jquery ui dailog box to display a form.When i click on submit, I want the form to perform action in the same div which is used to display the dailog box. But after form submission the response just displays the returned page on the parent window and not within the dialog. ...

jQuery: dialog question - change button after init

hi all, i've defined a dialog with 2 buttons: ok + cancel. what i want to do now is change the ok button's function after initialization, so i tried: dlgPrompt.dialog({ buttons: { 'Ok': function() { myFunction(); $(this).dialog('close'); } } }); unfortunately it doesnt work (when clicki...

Jquery slider: smooth click animation

jquery sliders contain a "animate" opton that when set to "true" will slide the handle into postion when the slider bar is clicked. Im using my slider to scroll the content in another div, creating a similar eeffect as the one on the apple website. http://www.apple.com/mac/ the problem is that when i click the sliderbar it smoothly ani...

Jqeury Drag Drop - how to fetch the dropped value in the server end?

Hi! I have an application which uses jquery ui to draag a li from one ul to another. the asp code for the same is as follows: <script type="text/javascript" src="../../jquery/jquery-1.3.2.js"> </script> <script type="text/javascript" src="../../jquery/ui.core.js"> </script> <script type="text/javascript" src="../../jquery/jquer...

Jquery menu and slideshow don't play together nicely.

I am using the superfish menu and also a jquery slideshow on the same page. For some reason they aren't playing together nicely, I have no idea why. If you mouse over the links at the top there should be a fade effect for the sub menu items. I've uploaded a file so you can see how the menu doesn't work. http://www.wilwaldon.com/jqu...

How to undo/redo a sortable action in jqueryui?

Hi there, I have a sortable list(jquery ui), could you advise if it is possible to implement 'undo/redo' base on sortable? Imagine that, a item is dragged to a new placeholder, then I click "undo" button and the item will move to its original position. If I click "redo" button and the item will move to that new placeholder. Maybe some...

jQuery UI dialog box appears at top of page while page is loading

I have a jQuery dialog box on my website. I give a div on the page the "dialog" id it's contents become the contents of the dialog box. However, when the page is loading, this div appears at the top of the page and looks bad. Does anyone know how to deal with this? ...

ZendX date picker example not working

Hi Stackland I am rather new to ZendX and I really wanted to get the simple JQuery example on Zend to get working.I have followed the example on the link below but all I get is a plain textbox without any datepicker functionality as I expected. http://stackoverflow.com/questions/1616857/best-way-to-start-using-jquery-in-a-zend-framewor...

Jitter in Jquery Accordion Implementation

Please check out http://jsbin.com/omuqo for a demo of this issue. When you open a panel by clicking on the handle, panels below slightly jitter throughout the animation. In the demo, the below panels should remain completely still since all panels are of equal height. When you have a more complex accordion with panels of varying height...

Are there any starter kits that uses all of : ASP.Net MVC 1.0 with Nhibernate. Sparkview, Jquery, Jquery UI?

I am looking for a starter kit that already is set up with the following? ASP.NET MVC 1.0 Jquery/Jquery UI/JqGrid/ Sparkview engine NHibernate Code quality is important as well. Thanks in advance. ...

Scroll bar problem when applying JQuery UI effects to text

I'm trying to use JQuery UI to make a block of text draggable (and later, droppable and resizable). The problem is that all of the JQuery UI documentation examples act on objects that have an explicitly specified CSS width and height. If you do something like this: <script type="text/javascript"> $(function() { $(".draggable").draggable...

JQuery Rotating Banner Question...

I am looking for a JQuery solution to something like the rotating banner located at http://www.bazaarvoice.com. One where it has a timed scroll but also allows the user to toggle by rolling over tabs. Anyone know of a good, easy to style one? ...

Line breaks between buttons in jQuery dialog box

I have a jQuery dialog box with three buttons. It looks like: Would you like to proceed to the signup page? < More Info > < OK > < Cancel > Is there any way to put a line break between buttons so that I end up with: Would you like to proceed to the signup page? < OK > < Cancel > ...

To remove a cloned object from a droppable region using jquery

I have used the droppable demo from the download(jQuery UI Droppable - Simple photo manager). What i have done is cloned the image and dropped into the droppable region. So i can have multiple images of the same object in the droppable region. This works fine. Now what i want is, i want to remove the images by clicking on the in the clo...

How to apply jquery UI effect to #name element from URL

Hello, I'd like to apply a query UI effect to an element depending on the # from the URL. i.e.: When loading www.mysite.com/page.html#name, effect() is applied to the element with the #name id while loading www.mysite.com/page.html#othername would have effect() apllied to the element with the #othername id and www.mysite.com/page03.htm...

jQuery UI dialog form answers remain when box is closed.

I want to use a jQuery UI dialog box to handle part of my form. I want the code to work something like this. <form id="MyForm" name="MyForm"> <input type="text" id="Input1" name="Input1"> <input type="text" id="Input2" name="Input2"> <div id="dialog"> <input type="text" id="Input3" name="Input3"> <input type="text" id="Input4" name="I...