[Proto-Scripty] Re: drag and drop tr from one table to another table.

2009-06-25 Thread Nivash Ramachandran

I Fixed the issue number 2. It was because I set  position relative to
tr alone, not to table element . But the invisible issue still
exists (issue 1)

On Jun 24, 10:03 pm, Nivash Ramachandran rniv...@gmail.com wrote:
 It's okay Rick ..

 On Jun 24, 9:59 pm, Rick Waldron waldron.r...@gmail.com wrote:



  Whoops - i replied to your first message before updating the thread. Sorry
  about that.

  Rick

  On Wed, Jun 24, 2009 at 12:57 PM, Rick Waldron 
  waldron.r...@gmail.comwrote:

   Can you post a link to an example?

   Rick

   On Wed, Jun 24, 2009 at 3:29 AM, Nivash Ramachandran 
   rniv...@gmail.comwrote:

   Hi all,

   I am using scriptaculous drag functionality in table tr element. Now I
   am facing the following issues. I can drag a row from one table to
   another table but
   1. While i drag a row, it gets invisible from view (not visible)
   2. I applied border style for table td element but it is not working
   after creating Draggable object.

   System info:
   1. scriptaculous.js v1.8.2
   2. IE 7
   3. Vista

   by Nivash Ramachandran
   India.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: drag and drop tr from one table to another table.

2009-06-25 Thread david

Hi Nivash,

The problem is with the starteffect and endeffect which by default
modify opacity of the dragged element.
To avoid the invisibility problem, just declare the draggable this
way:
new Draggable('myr1',{
starteffect:function(){},
endeffect:function(){}
});
new Draggable('myr2',{
starteffect:function(){},
endeffect:function(){}
});

--
david

On 25 juin, 13:38, Nivash Ramachandran rniv...@gmail.com wrote:
 I Fixed the issue number 2. It was because I set  position relative to
 tr alone, not to table element . But the invisible issue still
 exists (issue 1)

 On Jun 24, 10:03 pm, Nivash Ramachandran rniv...@gmail.com wrote:

  It's okay Rick ..

  On Jun 24, 9:59 pm, Rick Waldron waldron.r...@gmail.com wrote:

   Whoops - i replied to your first message before updating the thread. Sorry
   about that.

   Rick

   On Wed, Jun 24, 2009 at 12:57 PM, Rick Waldron 
   waldron.r...@gmail.comwrote:

Can you post a link to an example?

Rick

On Wed, Jun 24, 2009 at 3:29 AM, Nivash Ramachandran 
rniv...@gmail.comwrote:

Hi all,

I am using scriptaculous drag functionality in table tr element. Now I
am facing the following issues. I can drag a row from one table to
another table but
1. While i drag a row, it gets invisible from view (not visible)
2. I applied border style for table td element but it is not working
after creating Draggable object.

System info:
1. scriptaculous.js v1.8.2
2. IE 7
3. Vista

by Nivash Ramachandran
India.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: drag and drop tr from one table to another table.

2009-06-25 Thread david

Hi Nivash,

I just have a look to your exemple in FF, and it did not work.
If you need a cross browser solution, you should avoid table, and use
li with div to render the line as a table.

just a thought.

--
david

On 25 juin, 18:04, david david.brill...@gmail.com wrote:
 Hi Nivash,

 The problem is with the starteffect and endeffect which by default
 modify opacity of the dragged element.
 To avoid the invisibility problem, just declare the draggable this
 way:
 new Draggable('myr1',{
         starteffect:function(){},
         endeffect:function(){}});

 new Draggable('myr2',{
         starteffect:function(){},
         endeffect:function(){}

 });

 --
 david

 On 25 juin, 13:38, Nivash Ramachandran rniv...@gmail.com wrote:

  I Fixed the issue number 2. It was because I set  position relative to
  tr alone, not to table element . But the invisible issue still
  exists (issue 1)

  On Jun 24, 10:03 pm, Nivash Ramachandran rniv...@gmail.com wrote:

   It's okay Rick ..

   On Jun 24, 9:59 pm, Rick Waldron waldron.r...@gmail.com wrote:

Whoops - i replied to your first message before updating the thread. 
Sorry
about that.

Rick

On Wed, Jun 24, 2009 at 12:57 PM, Rick Waldron 
waldron.r...@gmail.comwrote:

 Can you post a link to an example?

 Rick

 On Wed, Jun 24, 2009 at 3:29 AM, Nivash Ramachandran 
 rniv...@gmail.comwrote:

 Hi all,

 I am using scriptaculous drag functionality in table tr element. Now 
 I
 am facing the following issues. I can drag a row from one table to
 another table but
 1. While i drag a row, it gets invisible from view (not visible)
 2. I applied border style for table td element but it is not working
 after creating Draggable object.

 System info:
 1. scriptaculous.js v1.8.2
 2. IE 7
 3. Vista

 by Nivash Ramachandran
 India.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: drag and drop tr from one table to another table.

2009-06-25 Thread Nivash Ramachandran

Yes, You are correct.  It is not working in Fire fox and even in
chrome too. Thanks for your solution to the issue I reported. :)

On Jun 25, 9:07 pm, david david.brill...@gmail.com wrote:
 Hi Nivash,

 I just have a look to your exemple in FF, and it did not work.
 If you need a cross browser solution, you should avoid table, and use
 li with div to render the line as a table.

 just a thought.

 --
 david

 On 25 juin, 18:04, david david.brill...@gmail.com wrote:



  Hi Nivash,

  The problem is with the starteffect and endeffect which by default
  modify opacity of the dragged element.
  To avoid the invisibility problem, just declare the draggable this
  way:
  new Draggable('myr1',{
          starteffect:function(){},
          endeffect:function(){}});

  new Draggable('myr2',{
          starteffect:function(){},
          endeffect:function(){}

  });

  --
  david

  On 25 juin, 13:38, Nivash Ramachandran rniv...@gmail.com wrote:

   I Fixed the issue number 2. It was because I set  position relative to
   tr alone, not to table element . But the invisible issue still
   exists (issue 1)

   On Jun 24, 10:03 pm, Nivash Ramachandran rniv...@gmail.com wrote:

It's okay Rick ..

On Jun 24, 9:59 pm, Rick Waldron waldron.r...@gmail.com wrote:

 Whoops - i replied to your first message before updating the thread. 
 Sorry
 about that.

 Rick

 On Wed, Jun 24, 2009 at 12:57 PM, Rick Waldron 
 waldron.r...@gmail.comwrote:

  Can you post a link to an example?

  Rick

  On Wed, Jun 24, 2009 at 3:29 AM, Nivash Ramachandran 
  rniv...@gmail.comwrote:

  Hi all,

  I am using scriptaculous drag functionality in table tr element. 
  Now I
  am facing the following issues. I can drag a row from one table to
  another table but
  1. While i drag a row, it gets invisible from view (not visible)
  2. I applied border style for table td element but it is not 
  working
  after creating Draggable object.

  System info:
  1. scriptaculous.js v1.8.2
  2. IE 7
  3. Vista

  by Nivash Ramachandran
  India.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: drag and drop tr from one table to another table.

2009-06-24 Thread david

Hi Nivash,

I was trying to reproduce your error.
Could you please post the code because I did not have the same error.

--
david

On 24 juin, 09:29, Nivash Ramachandran rniv...@gmail.com wrote:
 Hi all,

 I am using scriptaculous drag functionality in table tr element. Now I
 am facing the following issues. I can drag a row from one table to
 another table but
 1. While i drag a row, it gets invisible from view (not visible)
 2. I applied border style for table td element but it is not working
 after creating Draggable object.

 System info:
 1. scriptaculous.js v1.8.2
 2. IE 7
 3. Vista

 by Nivash Ramachandran
 India.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: drag and drop tr from one table to another table.

2009-06-24 Thread Rick Waldron
Can you post a link to an example?

Rick

On Wed, Jun 24, 2009 at 3:29 AM, Nivash Ramachandran rniv...@gmail.comwrote:




 Hi all,

 I am using scriptaculous drag functionality in table tr element. Now I
 am facing the following issues. I can drag a row from one table to
 another table but
 1. While i drag a row, it gets invisible from view (not visible)
 2. I applied border style for table td element but it is not working
 after creating Draggable object.

 System info:
 1. scriptaculous.js v1.8.2
 2. IE 7
 3. Vista



 by Nivash Ramachandran
 India.

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: drag and drop tr from one table to another table.

2009-06-24 Thread Rick Waldron
Whoops - i replied to your first message before updating the thread. Sorry
about that.

Rick

On Wed, Jun 24, 2009 at 12:57 PM, Rick Waldron waldron.r...@gmail.comwrote:

 Can you post a link to an example?

 Rick


 On Wed, Jun 24, 2009 at 3:29 AM, Nivash Ramachandran rniv...@gmail.comwrote:




 Hi all,

 I am using scriptaculous drag functionality in table tr element. Now I
 am facing the following issues. I can drag a row from one table to
 another table but
 1. While i drag a row, it gets invisible from view (not visible)
 2. I applied border style for table td element but it is not working
 after creating Draggable object.

 System info:
 1. scriptaculous.js v1.8.2
 2. IE 7
 3. Vista



 by Nivash Ramachandran
 India.

 



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: drag and drop tr from one table to another table.

2009-06-24 Thread Nivash Ramachandran

It's okay Rick ..


On Jun 24, 9:59 pm, Rick Waldron waldron.r...@gmail.com wrote:
 Whoops - i replied to your first message before updating the thread. Sorry
 about that.

 Rick

 On Wed, Jun 24, 2009 at 12:57 PM, Rick Waldron waldron.r...@gmail.comwrote:



  Can you post a link to an example?

  Rick

  On Wed, Jun 24, 2009 at 3:29 AM, Nivash Ramachandran 
  rniv...@gmail.comwrote:

  Hi all,

  I am using scriptaculous drag functionality in table tr element. Now I
  am facing the following issues. I can drag a row from one table to
  another table but
  1. While i drag a row, it gets invisible from view (not visible)
  2. I applied border style for table td element but it is not working
  after creating Draggable object.

  System info:
  1. scriptaculous.js v1.8.2
  2. IE 7
  3. Vista

  by Nivash Ramachandran
  India.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---