JQuery :: Drag And Drop Between Multiple Lists And Sortable

May 27, 2009

Any plugin/website that is jQuery, which will do what this Dojo example does, i.e: [URL]. I am wanting something similar to this as I would like to use as a means of allowing a user to administer a menu structure.

View 1 Replies


ADVERTISEMENT

JQuery :: Working With Drag & Drop Image Lists?

Dec 27, 2011

I am playing with an idea I found, here is a demo, And while I like it's function, I would like to make a couple mods. 1) How do I remove an item from the built/filled image list

View 1 Replies View Related

Drag And Drop Multiple Images?

Mar 4, 2009

I'm reasonably new to HTML, JS et al, but have been working with VBA for many years and consider myself an almost expert. I'm having a little trouble with some tricks in JS though, and I imagine this will not be the first query I have for this community

I have found code on W3Schools to drag and drop an image on a webpage. I am currently trying to modify it so that it drags and drops multiple images at once (as a group). This is because I intend to create meta-images on my webpage from multiple .gifs and .pngs with alpha=0, and then move those images around so that they appear to be one big image. This is the code I have that works, but only one image moves, the same image regardless of which image you click on:

[Code]...

View 2 Replies View Related

Hierarchical Sortable Lists?

Apr 13, 2006

Is this possible? Using the scriptaculous library I'm trying to replicate the structure of my sites main navigation menu which has sections and sub sections - I've not seen any example implementations of this, just one list or two separate lists, never lists within lists.

View 3 Replies View Related

JQuery :: UI Sortable - Limit Drag To Item Header?

Jun 21, 2009

how I can limit the "dragability" of an sortable item, to ex. a element inside the item. Meaning, I only want the item to sort when the header of the item is draged. Is there a simple way to do this, or do I have to modify core code/ create a helper to accomplish this functionallity? Have read the docs, but haven't found anything that mentions this..

View 1 Replies View Related

JQuery :: Multiple Select Lists In Multiple Rows That Have Been Dynamically Added?

Mar 7, 2010

I've been stumped. I'm usually good at figuring this stuff out, but I'm completely confounded here.I have a form with tables in it to add items to a series. The rows are being added dynamically by Jquery on the click event.

$('#add_hybrid').click(function(){
$('#hybrid tr:last').after('<tr><td width="15%"><?=brands('hybrid');?><input name="clubtypes[]" value="6" type="hidden" /></td><td width="25%"><?

[code]....

View 5 Replies View Related

JQuery :: Use Sortable For Multiple Columns?

Aug 9, 2010

In my design for admin panel, i wanna drag and drop modules. i have a php array with module names, and i need to save them sql like this[code]...

i can list right and left, but when i drag and drop something from one to another, it's not working.

is there any way to do that in jquery? can i get the information about where is the < li > ? how or where can i get the "where" columun?

View 2 Replies View Related

Jquery :: Get Serialize To Work - Move And Drop Elements Between Lists

Nov 7, 2010

I have created a jquery sortable list page where the user can move and drop elements between lists. The lists are <li>. how to get serialize to work. Here is a link for a serialize script that I am trying to use. [URL] I program in classic asp and don't understand javascript particularly well.

View 2 Replies View Related

JQuery :: Drag And Drop A Link In IE7?

May 5, 2010

Im having the exact same problem as posted here:[URL]

When I drag my link to my droppable area, an ajax request is supposed to triggred, but it seems like the whole page is beeing reloaded. This works fine with Chrome and Firefox. It works in IE if I have insert an alert in the drop function.

Im including the drop code I have:

$('.droppable').droppable({
drop: function(ev, ui) {
var intSourceObjectType = ui.draggable.attr('objecttype');
var intSourceObjectId = ui.draggable.attr('objectid');

[Code]....

View 1 Replies View Related

JQuery :: Drag And Drop, Very Slow?

Dec 7, 2007

Please the link to see what I have done so far...[URL]... It is a day planner, where various places can be dragged on to the day planner. It works, but it seems very slow. Running firebug profile when dragging a simle place into a single slot tells me that over 35,000 calls were made.

View 7 Replies View Related

JQuery :: Drag N Drop With Ajax?

Jun 11, 2009

I've got a page that uses the draggable and droppable feature - [URL]

It also uses jQuery to call a web service via Ajax - this also works fine.

However, I want to call the web service only when an item is dropped onto the objeect but when I try to add the Ajax function inside the $("#droppable").droppable({ drop: function(event, ui) {.... it doesn't seem to work.

You can see my code at [URL]

View 1 Replies View Related

JQuery :: Drag And Drop In Tabs?

Aug 12, 2009

I am using jQuery Tabs to make an ajax call for each tab when clicked. The ajax that displays is like inettuts. 3 or 4 columns of widgets that can be dragged and dropped. The problem that I am having, when I put the html of the result directly in the main page, it works as designed. When I click on a tab, it displays the page, but all the jquery functions in that ajax page are gone and I cannot sort, drag and drop anything. I suspect that the ajax page is not reading the javascripts in the head, which are on main page. Unfortunately I can't remove them to include them in ajax pages dynamically because I am also using them for other functions in main page. Is there a way to make those ajax pages read the javascripts on that main page?

[URL]

View 3 Replies View Related

JQuery :: Drag And Drop Photos To Right Box

Oct 29, 2009

I found fantastic drag and drop technique, analyzied javascript file and would like to get helo, how to create it. Here: [URL] you can drag and drop the photos to the right box, then you can email them. How can I create it on my own website? You can find javascript file here: [URL]. Is it possible at all?

View 2 Replies View Related

Drop Down Lists

Jan 5, 2007

I have the requirement of autoupdating the drop down lists , when a
selectin is done in another drop down box. I dont have a server through
which i can make it dynamic. I have to hard code it in the html. Can
someone suggest anything.

View 4 Replies View Related

Jquery :: Multiple Custom Dropdown Lists

Nov 4, 2010

I have a Custom Dropdown Lists that converts Option tags to UL tags with jQuery. The Dropdown List is working perfectly as long as theres just one on each page.I'm trying to figure out how i can have multiple Dropdown Lists (in this case two) on the same page, and how to populate the second Dropdown List (with say Cities from the Country) based on the selection made in the first Dropdown.

View 2 Replies View Related

JQuery :: Add Remove Link After Drag And Drop?

Jan 10, 2011

I'm finally getting around to try the drag and drop functionality of jquery. I am working with the Shopping Cart example. Everything is working great but I would like to add a remove link to the dropped item so it can be deleted from the shopping cart.

Needless to say I haven't even gotten to the code to actually remove the link cause I can't even append the link...haha

This results in nothing: $('<a href="#">remove</a>').after(ui.item);

This results in duplicate entry of the dragged element with the bullet point: $('<a href="#">remove</a>').after.ui.item;

View 5 Replies View Related

JQuery :: Drag And Drop In Cfwindow It Does Not Work?

Sep 2, 2010

I am trying to use jquery drag and drop in cfwindow it does not work when i place code out side cfwindow it works nicely, how can i resolve this issue, i tried usinf cfajaxonload but no luck.

View 3 Replies View Related

JQuery :: Drag/drop Between Asp.net Datalist And Repeater?

May 13, 2011

I am working on a project where I need to drag an image from a ASP.NET datalist control that is bound to a datatable to a repeater control that is bound to a datatable. The issue I am having is I need to know the Id (field bound to the datalist) of the row of the dragged image. Is there a way to access this field when the image is dropped? I would also need to know the id of the row in the repeater that the image is dropped on.Here is the code that I currently have:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SRCartPg2.aspx.cs" Inherits="HRI.Proof"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >[code]............

View 1 Replies View Related

JQuery :: Drag And Drop Functionality Not Working?

Apr 9, 2011

I am attempting to build a page, however using some sample code the page have drag and drop functionality.

After using a simple jqeury statement to add to this form, every thing working (drag and drop)properly.

Now my actual requirement is

I need to generate the controls dynamically. Whne I generated all controls from server side and put all the generated controls HTML snipet in

<
div
id
="sort1"
class
="groupWrapper">

its working fine but when I try to put same HTML snippet in the same DIV using JavaScript drag and drop functionality not working;

Below is the code I am using.

Case when drag and drop functionality Not working.

<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">

[Code].....

View 2 Replies View Related

JQuery :: Drag & Drop Outline Application?

Aug 17, 2009

<a href="http://jqueryui.com/demos/sortable/#connect-lists">http://jqueryui.com/demos/sortable/#connect-lists</a>

I was wondering if anyone knew of code like thisĀ  that handled embedded lists that would work like an Outline

View 1 Replies View Related

JQuery :: Sort Name In An <ul> Where The Li's A Created From Drag And Drop

Apr 24, 2009

I'm looking to order a list taht is created by drag and drop.

The structure is a normal unordered list

Have looked at sort , sortable , etc...But no real explanation found.

View 3 Replies View Related

JQuery :: Drag & Drop On Table Rows

Feb 11, 2010

I'm looking to find out a way to drag and drop table rows between two tables. I reused jQuery example for portlets, but that did not work to full satisfaction. In above screen shot I added border, but that is just for illustration of the issue. Problems:As you will see from the code I have to work with relative measurement there for I use percentage. I wasn't able to enforce row width to fill in whole table. How do I force full row width?

Drag-able row are part of table body (tbody) and headers are done with thead. In this scenario I enforced same style settings on header as body and everything is now squashed to the left. If I leave styling out of header then first header stretches over whole tdody content and second is out of place over nothing. Sort of bad designed table when you forget one column. This become a big issue if there is more then 2 items in a row, for example 4 column in tbody get squashed under one thead column even though there are 4 headers to align under it.

[Code]...

View 1 Replies View Related

Editing Drop Down Lists?

Jan 17, 2009

I have this code in the beginning: document.write("<option id='test' value='move" + i + "'>Fire Blast</option>");

How do I edit the text Fire Blast to something else? The Fire Blast part is not attribute, so it can't be edited like:

document.movelist.name = "Something else";

View 2 Replies View Related

Using To Check Drop-down Lists?

Aug 24, 2009

I've tried w3schools, tizag, and google, but haven't found exactly what I need. I need some way of easily figuring out which option in a drop down menu is checked, through the use of javascript, like how you can use document.formname.elementname[i].checked to find out which checkbox/radio button is checked. Anything that would return something that allows me to figure out which option has been chosen. I will need to have a function with 3 if statements, one for each option.

View 5 Replies View Related

3 Separate Drop Down Lists ?

Nov 4, 2009

On my web page I have 3 seperate catorgories with 2 drop down lists in each, the first dropdown list in each catergory is for "county"

Here is a snippet of the code

I wanted to know if it is possible to use "list.js" to populate all 3 county dropdown lists or would I need "list.js" "list1.js" etc etc

View 10 Replies View Related

How To Disable Drop-down Lists

Dec 21, 2010

I'm looking for some help with drop-down lists.The lists below are populated by lists.js (a script that was kindly written by a friend).What I need to happen is that as soon as an option within one of the lists is selected, the other four become disabled.I'm afraid I've no clue where to start (and I think I have prevailed on my friend's patience for long enough!)

<html>
<head>
<script language="javascript" src="lists.js"></script>

[code]....

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved