jquery-ui

Can I move a Flash object within the DOM without it reloading?

I'm trying to use the scale effect from the jQuery UI library on a wrapper element that contains a Flash object. The problem I'm encountering is that the content of my wrapper is automatically moved into another wrapper (.ui-effects-wrapper), and when this happens the Flash object reloads. Of course, the specific problem here has to do...

appendTo not working in jquery-ui 1.8

I have this widget and I am trying to append this.helper into my body. I used the $.extend() function at the end, but I don't know if this works in jquery 1.8 because I just updated to 1.8 and everything went wrong so I have been in the middle of trying to make it work. my this.helper does not get appended to my body. Can anyone help?...

How can I make my asp.net page postback when a control is clicked inside a jQuery dialog?

I'm having some trouble with jQuery UI. I've created a dialog with jQuery UI: so far, so good. I set up a form inside the jQuery UI dialog and then it's another story. I've written a very simple page to illustrate: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="testpage.aspx.cs" Inherits="RiverCascade.testpage" %> <hea...

How to build accordian style debugger with DOM - a nudge?

I have given up doing this in pure js. And I can't find the jquery accordian stuff i was looking over when I started this project originally. What is the best way to do this? My code is linked here ...

Creating dynamic previous next buttons in jquery UI dialog

I have searched high and low for this on this site and the web Is it possible to dynamically create previous and next buttons in a jquery dialog box? I have a list of links, and I would like to click on a link and have a dialog box open. In that dialog box would have a previous and next button that when clicked on would close the curre...

Adding New Tab with JQuery UI tabs

Hi all, I am developing a web application using MVC .net framework. In the user interface of this application i want to create a tab when a button is clicked. following is the method i am creating this tab when a button is clicked in the user interface $('#tabs').tabs("add", 'uploadnewcv', 'Add New CV'); while i creating this tab i ...

Will there be any issues when JQUERY Datepicker used with AJAX Update panel..??

i have used JQuery date picker in form- form contains just one text box and when we clicks on it--> it pops up the JQUERY datepicker. In other web form in same project --> i have used script manager, Update panel and one textbox --> when click on it - am not getting JQUERY Datepicker Popped.?? What will be the issue.?? Any problem with...

background color change when the mouse is over one option in my dropdownlist

link text thank meagar for your answer but this is exactly what i want to do ...

how to center jqGrid popup modal window?

Hello! I've started using jqGrid for few days and everything is working cool.so far so good. What borders me is that when you click on edit button in the NavGrid without selecting a row, it shows a centered modal popup notifying of no row being selected. But when you click on add or edit(with selected row) it shows a modal at the left...

Adding Lightbox functionality to a JQueryUI Template in Visual Studio 2010

Hi all, I am trying to add lightbox functionality to my website but it just seems to be giving me problems. I am using a standard JQueryUI template. I have read on the net that the scripts might be clashing, but have also been advised that I am getting problems because I am using Prototype and JQuery together. Please could you advise? ...

changing href attr in jQuery UI datepicker

Hi, I'm playing around with the UI datepicker widget and I noticed that when the calender is generated, all the dates are inside an anchor tag with href="#". is it possible to change the href to the dateText, or whatever i set the dateFormat to? ex: <a class="ui-state-default" href="#October-27-2010">27</a> Thanks in advance //update...

How to localise buttons on JQueryUI modal dialog

I have a JQueryUI modal dialog and everything is working fine except for one issue ... how do I localize the OK and Cancel buttons? I have gone through the demos and documentation and unless I am missing something very obvious, can't figure out how to do this ... My code: $("#MyDialog").dialog({ . . . buttons: { OK: functi...

Call event after sorting in JQuery

Background Let me start off by listing my opinion of jQuery: I've been anti-jQuery for the longest time I think it does have its uses and parts of its code can be reused I feel if you're against something, you should know what you're "against" I've created a number of examples and compared that to ways I've done things in the pa...

jQuery ajaxOptions -error works, why doesn't Success?

Hello, I'm using jQuery UI Tabs, and am using the sample code: $(function() { $("#tabs").tabs({ ajaxOptions: { error: function(xhr, status, index, anchor) { $(anchor.hash).html("Couldn't load this tab. We'll try to fix this as soon as possible. If this wouldn't be a demo."); } ...

give name and value to jqurey UI dialog button...

Hi, i want to give a name and value to the default button in UI dialog. how can i do that ? i would like to give to submit button a value and name! $("#dialog").dialog({ bgiframe: true, autoOpen: false, height: 150, width: 600, modal: true, buttons: { Submit: function() { document.getEle...

jquery theme builder question

How do I initialize a button as an icon using the JQuery themeroller? I dont want text next to an icon, I just want an icon, and I want to switch between two icons when clicking on it. ...

jQuery UI AutoComplete - How to implement progress-indicator?

If the question title wasn't clear enough: I am using the jQuery AutoComplete plugin (part of jQuery UI 1.8.5) I would have thought the supplied CSS/images would include an ajax-like progress image? If not, what's the easiest way to create one? This is my autocomplete code: $('#query').autocomplete({ source: function (request, re...

Using jqueryUI spinner - getting started

I'm absolutely sure this will be a trivial, newbie question, but hey - what's stackoverflow for? I want to make use of the jQueryUI Spinner; and I'd like to grab the required files from Google. I have the following in my <head>: <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript"></scrip...

JQuery UI - Drag from Sortable to Droppable

I have a list of images which are sortable. To delete them, the user will drag them from the Sortable list to a Droppable div representing a trashcan. How can I accomplish this? Do I need to add a draggable to each of the image for it to work with the droppable? ...

jQuery UI dialog vertical positioning

I have a grid (rows and columns) of textboxes where some are clickable. If clicked, the jQuery UI dialog box show up below the textbox with a drop down menu of choices. However, this works for the first 3-4 rows of textboxes. After I get a certain distance down on the browser, the modal dialog box no longer shows up directly below the...