Re: [jQuery] In place editor for jQuery 1.1

2007-03-07 Thread chali

jEditable is a great piece of work :)

It works great in FF 2.0.0.2 and IE 6 on XP SP2.

I have a question, it's posible to add a class to the input box at editing
tme?

Thanks




Mika Tuupola wrote:
 
 I just released new version of jEditable plugin which works with  
 jQuery 1.1. I would appreciate feedback from people using Windows  
 browsers. Download [1] and test [2] links below:
 
 [1] http://www.appelsiini.net/~tuupola/javascript/jEditable/
 [2] http://www.appelsiini.net/~tuupola/jquery/jeditable/
 
 Thank you in advance!
 
 --
 Mika Tuupola  http://www.appelsiini.net/~tuupola/
 
 
 
 
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/
 
 

-- 
View this message in context: 
http://www.nabble.com/In-place-editor-for-jQuery-1.1-tf3029113.html#a9354995
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] In place editor for jQuery 1.1

2007-03-07 Thread Mika Tuupola

On 7 Mar 2007, at 17:28, chali wrote:

 jEditable is a great piece of work :)
 It works great in FF 2.0.0.2 and IE 6 on XP SP2.

Thanks!

 I have a question, it's posible to add a class to the input box at  
 editing
 tme?

Soon. Thats a promise :) I have actually patch sent by Mathias Henze  
which includes class support. I will make a new release during this  
week.

--
Mika Tuupola  http://www.appelsiini.net/~tuupola/




___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] In place editor for jQuery 1.1

2007-01-17 Thread Sam Sherlock

all working in FF2  IE6 on windows 2 k
Opera 9 also all working appart from basic usage, the otthers work fine some
odd in that.

fantastic stuff, nice work - S

On 17/01/07, Mika Tuupola [EMAIL PROTECTED] wrote:


I just released new version of jEditable plugin which works with
jQuery 1.1. I would appreciate feedback from people using Windows
browsers. Download [1] and test [2] links below:

[1] http://www.appelsiini.net/~tuupola/javascript/jEditable/
[2] http://www.appelsiini.net/~tuupola/jquery/jeditable/

Thank you in advance!

--
Mika Tuupola  http://www.appelsiini.net/~tuupola/




___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] In place editor for jQuery 1.1

2007-01-17 Thread Ⓙⓐⓚⓔ
that's a beautiful piece of jQuery code! It does the job, it's short,
and it just works! I look forward to using it!

I did notice a few thing though,
   in the case of a degenerate this.length == 0, you break the chain.
   you can get the nodeName, so you shouldn't have to pass it
   you have different post  get attibutes,where 1 would do,I'd rather
pass in the type myself.

BUT boy oh boy it's sweet! congrats!

On 1/17/07, Mika Tuupola [EMAIL PROTECTED] wrote:
 I just released new version of jEditable plugin which works with
 jQuery 1.1. I would appreciate feedback from people using Windows
 browsers. Download [1] and test [2] links below:

 [1] http://www.appelsiini.net/~tuupola/javascript/jEditable/
 [2] http://www.appelsiini.net/~tuupola/jquery/jeditable/

 Thank you in advance!

 --
 Mika Tuupola  http://www.appelsiini.net/~tuupola/




 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



-- 
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] In place editor for jQuery 1.1

2007-01-17 Thread Mika Tuupola

On Jan 17, 2007, at 9:40 PM, Ⓙⓐⓚⓔ wrote:

 I did notice a few thing though,
in the case of a degenerate this.length == 0, you break the chain.
you can get the nodeName, so you shouldn't have to pass it

This is related bug:

http://jquery.com/dev/bugs/bug/811/

Code is there to prevent prevent elem has no properties if you try  
to attach editable to nonexisting element. For example

$('#nosuch').editable();

With 1.1 I cant check it with:

if (jQuery(this).attr('id') == null)

this is why I am using

  if (this.length == 0)


Haven't tried latest from svn though.

--
Mika Tuupola  http://www.appelsiini.net/~tuupola/




___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] In place editor for jQuery 1.1

2007-01-17 Thread Ⓙⓐⓚⓔ
I would have done it the same way... but return this, instead of
return false (the chain breaker)

On 1/17/07, Mika Tuupola [EMAIL PROTECTED] wrote:

 On Jan 17, 2007, at 9:40 PM, Ⓙⓐⓚⓔ wrote:

  I did notice a few thing though,
 in the case of a degenerate this.length == 0, you break the chain.
 you can get the nodeName, so you shouldn't have to pass it

 This is related bug:

 http://jquery.com/dev/bugs/bug/811/

 Code is there to prevent prevent elem has no properties if you try
 to attach editable to nonexisting element. For example

 $('#nosuch').editable();

 With 1.1 I cant check it with:

 if (jQuery(this).attr('id') == null)

 this is why I am using

   if (this.length == 0)


 Haven't tried latest from svn though.

 --
 Mika Tuupola  http://www.appelsiini.net/~tuupola/




 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



-- 
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] In place editor for jQuery 1.1

2007-01-17 Thread Nathaniel See
Looks good FF2.0.0.1, IE 6 On winXP SP2. Very nice.

Mika Tuupola wrote:
 I just released new version of jEditable plugin which works with  
 jQuery 1.1. I would appreciate feedback from people using Windows  
 browsers. Download [1] and test [2] links below:

 [1] http://www.appelsiini.net/~tuupola/javascript/jEditable/
 [2] http://www.appelsiini.net/~tuupola/jquery/jeditable/

 Thank you in advance!

 --
 Mika Tuupola  http://www.appelsiini.net/~tuupola/




 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/

   

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/