[jQuery] Re: Draggable() doesn't work with table rows?

2008-11-28 Thread ajpiano

http://www.isocra.com/2008/02/table-drag-and-drop-jquery-plugin/

is a plugin that makes this possible

--adam

On Nov 28, 5:01 am, seasoup <[EMAIL PROTECTED]> wrote:
> That's different.  The  doesn't need to leave the table, if
> you could make a tr draggable, you'd have to drop it in another table
> at the least
>
> On Nov 27, 9:43 pm, René <[EMAIL PROTECTED]> wrote:
>
> > Actually, sortable() lets you drag rows between tables, so I don't
> > think it's impossible.
>
> > On Nov 27, 4:34 pm, seasoup <[EMAIL PROTECTED]> wrote:
>
> > > I don't think you can drag table rows... it would remove them from the
> > > table...
>
> > > On Nov 27, 3:11 pm, René <[EMAIL PROTECTED]> wrote:
>
> > > > I can drag and sort lists.
> > > > I can sort tables.
> > > > I can drag entire tables.
>
> > > > But I can't drag individual table rows. Anyone know how to do it?
> > > > Here's some sandbox code:
>
> > > > 
> > > > The
> > > > slow
> > > > green
> > > > turtle
> > > > 
>
> > > > 
> > > > 
> > > > The
> > > > quick
> > > > brown
> > > > fox
> > > > 
> > > > 
>
> > > > http://ajax.googleapis.com/ajax/
> > > > libs/jquery/1.2.6/jquery.min.js">
> > > > http://ajax.googleapis.com/ajax/
> > > > libs/jqueryui/1.5.2/jquery-ui.min.js">
> > > > 
>
> > > > $(document).ready(function() {
> > > >         $('.drag1').draggable();                // WORKS
> > > > //      $('#list').sortable();                  // WORKS
> > > > //      $('#rows').sortable();                  // WORKS
> > > > //      $('#table').draggable();                // WORKS
> > > > //      $('#rows').draggable();                 // DOESN'T WORK  -- ?
> > > >         $('.drag2').draggable();                // DOESN'T WORK  -- ?
> > > > //      $('#a_1').draggable();                  // DOESN'T WORK  -- ?
> > > >         });
>
> > > > 


[jQuery] Re: Draggable() doesn't work with table rows?

2008-11-28 Thread seasoup

That's different.  The  doesn't need to leave the table, if
you could make a tr draggable, you'd have to drop it in another table
at the least

On Nov 27, 9:43 pm, René <[EMAIL PROTECTED]> wrote:
> Actually, sortable() lets you drag rows between tables, so I don't
> think it's impossible.
>
> On Nov 27, 4:34 pm, seasoup <[EMAIL PROTECTED]> wrote:
>
> > I don't think you can drag table rows... it would remove them from the
> > table...
>
> > On Nov 27, 3:11 pm, René <[EMAIL PROTECTED]> wrote:
>
> > > I can drag and sort lists.
> > > I can sort tables.
> > > I can drag entire tables.
>
> > > But I can't drag individual table rows. Anyone know how to do it?
> > > Here's some sandbox code:
>
> > > 
> > > The
> > > slow
> > > green
> > > turtle
> > > 
>
> > > 
> > > 
> > > The
> > > quick
> > > brown
> > > fox
> > > 
> > > 
>
> > > http://ajax.googleapis.com/ajax/
> > > libs/jquery/1.2.6/jquery.min.js">
> > > http://ajax.googleapis.com/ajax/
> > > libs/jqueryui/1.5.2/jquery-ui.min.js">
> > > 
>
> > > $(document).ready(function() {
> > > $('.drag1').draggable();// WORKS
> > > //  $('#list').sortable();  // WORKS
> > > //  $('#rows').sortable();  // WORKS
> > > //  $('#table').draggable();// WORKS
> > > //  $('#rows').draggable(); // DOESN'T WORK  -- ?
> > > $('.drag2').draggable();// DOESN'T WORK  -- ?
> > > //  $('#a_1').draggable();  // DOESN'T WORK  -- ?
> > > });
>
> > > 


[jQuery] Re: Draggable() doesn't work with table rows?

2008-11-27 Thread René

Actually, sortable() lets you drag rows between tables, so I don't
think it's impossible.

On Nov 27, 4:34 pm, seasoup <[EMAIL PROTECTED]> wrote:
> I don't think you can drag table rows... it would remove them from the
> table...
>
> On Nov 27, 3:11 pm, René <[EMAIL PROTECTED]> wrote:
>
> > I can drag and sort lists.
> > I can sort tables.
> > I can drag entire tables.
>
> > But I can't drag individual table rows. Anyone know how to do it?
> > Here's some sandbox code:
>
> > 
> > The
> > slow
> > green
> > turtle
> > 
>
> > 
> > 
> > The
> > quick
> > brown
> > fox
> > 
> > 
>
> > http://ajax.googleapis.com/ajax/
> > libs/jquery/1.2.6/jquery.min.js">
> > http://ajax.googleapis.com/ajax/
> > libs/jqueryui/1.5.2/jquery-ui.min.js">
> > 
>
> > $(document).ready(function() {
> >         $('.drag1').draggable();                // WORKS
> > //      $('#list').sortable();                  // WORKS
> > //      $('#rows').sortable();                  // WORKS
> > //      $('#table').draggable();                // WORKS
> > //      $('#rows').draggable();                 // DOESN'T WORK  -- ?
> >         $('.drag2').draggable();                // DOESN'T WORK  -- ?
> > //      $('#a_1').draggable();                  // DOESN'T WORK  -- ?
> >         });
>
> > 


[jQuery] Re: Draggable() doesn't work with table rows?

2008-11-27 Thread seasoup

I don't think you can drag table rows... it would remove them from the
table...


On Nov 27, 3:11 pm, René <[EMAIL PROTECTED]> wrote:
> I can drag and sort lists.
> I can sort tables.
> I can drag entire tables.
>
> But I can't drag individual table rows. Anyone know how to do it?
> Here's some sandbox code:
>
> 
> The
> slow
> green
> turtle
> 
>
> 
> 
> The
> quick
> brown
> fox
> 
> 
>
> http://ajax.googleapis.com/ajax/
> libs/jquery/1.2.6/jquery.min.js">
> http://ajax.googleapis.com/ajax/
> libs/jqueryui/1.5.2/jquery-ui.min.js">
> 
>
> $(document).ready(function() {
> $('.drag1').draggable();// WORKS
> //  $('#list').sortable();  // WORKS
> //  $('#rows').sortable();  // WORKS
> //  $('#table').draggable();// WORKS
> //  $('#rows').draggable(); // DOESN'T WORK  -- ?
> $('.drag2').draggable();// DOESN'T WORK  -- ?
> //  $('#a_1').draggable();  // DOESN'T WORK  -- ?
> });
>
>