-
as seen on Stack Overflow
- Search for 'Stack Overflow'
hello
I had a working application, which uses a jquery ui dialog. I wanted to make the dialog draggable. As far as I know the only thing needed is the jquery.ui.draggable.js script. So I added it to the scripts I am using, but know I get the following error (as shown in the firebug console): base…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a datepicker control setup using the JQuery UI, I am also using the JQuery UI themes which provide a bunch of default icons that I want to use.
The DatePicker allows for specifying a specific image, i.e.:
<script type="text/javascript">
$(document).ready(function() {
$("#DateFrom")…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
In the following code I get an error that says autocomplete function Object is not a property or method
Here is the code:
<title><%= ViewData["pagetitle"] + " | " + config.Sitename.ToString() %></title>
<script src="../../Scripts/jqueryui/jquery-ui-1.8.1.custom/development-bundle/ui/minified/jquery…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have dialog created like this
$('#add_error').click(function(e) {
$('<div>')
.load('/someaction/format/html/')
.dialog({
title: 'Some title',
modal: true,
width: 385,
close: function() {
…
>>> More
-
as seen on Developper.com
- Search for 'Developper.com'
jQuery UI 1.8 est disponible
L'équipe de jQuery UI annonce la sortie de jQuery UI 1.8, cette version apporte 5 nouveaux plug-ins, 1 nouvel effet, et des centaines de corrections de bogues et d'améliorations.
Pour une liste complète de tous les changements entre jQuery UI 1.7.2 et jQuery UI 1…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I am using jquery 1.4.2 and trying to achieve the following:
1 - function call that sends a value to a php page to add/remove an item
2 - returns html list of the items
3 - list should still be sortable
4 - save (serialise list) onclick
My full WIP is located here [http://www.chittak.co…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have this jQuery code:
$(".right_box_holder").sortable({
update : function () {
var order = $('.right_box_holder').sortable('serialize');
$.get("right_menu_functions.php?change_sortorder&"+order);
}
});
and this HTML code:
<div class='right_box_holder'>
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a schedule table I'm using jQuiry Sortable for editing.
Each day is a UL, and each event is an LI.
My jQuery is:
$("#colSun, #colMon, #colTue, #colWed, #colThu").sortable({
connectWith: '.timePieces',
items: 'li:not(.lith)'
}).disableSelection();
To make all LI's…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi there,
I have a draggable list (.field) where you can drag & drop items from it into a sortable list (.sortlist). I did it this way because I didn't want the master list (.field) altered in any way. It works fine, except I cannot work out how to manipulate the dropped field in a sortable list…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm adding list items to a page dynamically with $.get, then appending them to the OL element. Pretty usual to this point.
But jQuery isn't aware of these new items when they get loaded into the page, and I'm not being able to make them sortable.
I made some trials with jQuery Live, but didn't…
>>> More