jquery-ui

JQuery plugin to do this effect?

Is there a JQuery plugin that does this effect which is on this page? http://www.aspslideshow.com/Samples/AmazonMusic/tabid/87/Default.aspx ...

jQuery Grid with autocomplete

I am building a webapp using jQuery and jQuery UI. I am at an impass. What I need is a jQuery grid that has editable fields and somehow incorporate an autocomplete field on one of these editable cells and i cant seem to find any grid offerings that implement this. I've been looking at StickGrid and jgGrid I especially like jqGrid sin...

How do I get the Id of a button of a jquery UI dialog?

as the title says.... this is what I have tried but not working $('#uxReferralAssessmentDetailsDialog').dialog({ autoOpen: false, modal: true, width: 400, title: "Referral Assessment", buttons: { "Save":{ id: 'uxbtnSaveAssessment', click:othis.OnAssessmentSave}, "Cancel": fun...

Creating a slider bar using jQuery 1.2.1

Hai, I've got a project which uses jQuery 1.2.1, and I cannot update the version. I need to create an incremental slider bar the same as the jQuery UI example (http://jqueryui.com/demos/slider/#steps). The legacy download of jQuery UI is for 1.2.6 so even that will not cut the mustard. Does anyone know of a way to emulate the same func...

Jquery Draggable - How do I create a new draggable div on the fly that can then be dragged?

I'm creating a day planner using jquery, draggable and droppable. When a job is dragged from the unassigned column into a hour time slot, the original draggable item is removed, and a new div is placed into page, with the job details. This newly created div block of code, has all the parameters in it to make it draggable . When it's r...

How do I collapse a tab on an link click?

I have been searching around and can't seem to find anything on this. What I have right now is this... collapsible =true $('#close1').click(function() { // bind click event to link $tabs.tabs('select', 1); return false; }); but it doesn't work I don't see anything about a toggle method. Any help appreciated. Derek ...

jQuery - each function

Hi there I currently have a list of thumbnails that is located in a ul tag as li's. I am using the Galleria image gallery, but I have more than six images in my gallery, so am I trying to implement a page system. What I am trying to do is the following: I have a row of images, row1, when you click on page 2 row1 should hide using thi...

MVC/jQuery/LINQ-to-SQL: Delete with confirmation and redirect on success

Here's the behavior I'm looking for: User selects a record from an index view, which redirects to that record's detail view. User clicks a link to delete the currently displayed record. A modal dialog asks for confirmation of the delete. User presses the Confirm button. The associated controller action method is executed, which is supp...

How to set the date format of a ZendX_JQuery_Form_Element_DatePicker?

I am trying to set the date format of the date picker element, but I can't get it to work. How do you set the date format of a ZendX_JQuery_Form_Element_DatePicker element? Solution: Strange...I tried my original code sample again, and it worked. $element = new ZendX_JQuery_Form_Element_DatePicker('date', array( 'jQueryParams' => ...

Unable to Display Model Dialog with JQuery-UI

I'm attempting to display a modal dialog as a test run before I try to perform a more difficult task. However, I seem to be doing something wrong as the code I copied from the demo site is not working when I set it up and run it locally. Here is my source: <html> <head> <script type="text/javascript" src="lib/jquery/js/jquery...

Renumbering a List using jQuery

I have a list powered by jQuery UI's sortable that allows a user to order line items. I want to have a number that represents the position of that object after it is dropped. <ul> <li><span class="number">1</span> Apple</li> <li><span class="number">2</span> Microsoft</li> <li><span class="number">3</span> Canonical</li> ...

How to get textbox value from jQuery modal dialog after postback?

How do I get the ASP.NET text boxes updated with the value of the entered form data? The code below is basically the modal dialog form sample from jQuery UI, but with ASP.NET text boxes. The post back is fired, however the text box is not updated. After post back, I don't have the values in my test boxes. I'm pretty sure this is an easy...

jquery, serialize the ui.item

This is what I have so far. The code I have is contained in php so there is some php in it. $(document).ready(function() { $(\"ul.droptrue\").sortable({ connectWith: '.droptrue', remove:function(event, ui){ var order = $(ui.item).serialize; alert( order ); }, receive : fu...

Jquery Photo Cycle - Ensure Remote Image URLs Center Correctly

I'm using the jquery photo cycle tool to display a list of company logo's on my website. I randomly select 5 remote image urls from the DB to be displayed on each page, and center the element on the page. <div align="center"> Featured Companies <div class="logos" align="center"> <?php foreach($this->logos as $logo) : echo "<a title=\"...

using Jquery Tabs in asp.net

Hi everyone, I need to use jquery tabs in my asp.net website with ajax mode to load data in HTML partials form.I will have 4 tabs with different data sources.I need to load data into a tab only when a user clicks on that particular tab,in HTML partials using ajax mode.I have been googling to find an example on this.I am new to jquery an...

jQuery UI range slider - grab the bar between the handles

Is there any way to modify a jQuery UI range slider so that you can grab the bar between the handles to slide the selected range? If you try to grab the bar, it jumps to one of the handles. This page has an example of the sort of behavior I'm looking for - it's at the bottom. ...

jQuery datepicker not appearing, race condition?

Hello everyone, I formerly had my datepicker appearing when I was applying it to a static element, but for some reason I can't get it to work dynamically. Under certain configurations, it works if I pop up an alert box first. What is wrong? div.load(url, function() { div.children().each( function(){this.datepicker({dateFormat:"yy-m-d"...

jQuery UI - Unselect

How could I remove the selection of a selected element (with http://jqueryui.com/demos/selectable/) with jQuery (UI)? ...

.datepicker('setdate') issues, in jQuery

Hi, I have a function that executes a query to get some data based on a certain date range which is selected using .datepicker(). I am trying to set the datepicker's that are in the response data back to the date range which was selected before the query was executed. queryDate = '2009-11-01'; $('#datePicker').datepicker('setDate', qu...

Open a JQueryUI Dialog and have it populate itself from DB

Hi, I have a list of companies and I want to be able to open a dialog to be able to edit their details. This opens the dialog: $('#company_details').click(function() { $('#dialog').dialog('open'); }); Only binds the dialog to the first instance of , not every one. And then, how can I pass the dialog an ID so I can then run an AJAX ...