[jQuery] Re: key - value

2009-09-10 Thread TiGeRWooD


I found more easy :)

$('#id').autocomplete('file.php',{
 width: 300,
 selectFirst: false
}).result(function(event, data, formatted) {
 $('#id_user').val( data[1] );
});


Thanks anyway :)


[jQuery] [autocomplete] key - value

2009-09-09 Thread TiGeRWooD

Hi,

Is there a way to use

$key = $value
45 = 'some text'

And search in $value (some text) but when I select 'some text', it's
the $key (45) as input value instead 'some text' ?

Thanks in advance.

ps : sorry for my poor english.



[jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with Columns)

2009-02-19 Thread TiGeRWooD

Hi Nicolas,

Is there a way, when it's a file link (like a pdf for example), to
open the file and not display the new column ?
Actually, if I put a link to a pdf in href attribute, the finder
create a new column and display many special caracters 

Thanks for your reply and plugin !!

p.s: sorry for my english :)



On 11 fév, 19:18, Todd Parker fg.t...@gmail.com wrote:
 Hi Nicolas - I just wanted to say that you did a stellar job of using
 the new CSS framework. I'm the design lead for the jQuery UI team and
 was involved in the creation of the framework and this is the best
 example of leveraging the power of this system. Just curious, did you
 run into any issues or tips that you'd like to share with us? Anyone
 use the CSS framework that you'd like to share?

 I added links to this in the docs wiki in the ThemeRoller ready 
 page:http://docs.jquery.com/UI/Theming/ThemeRollerReady

 On Feb 7, 2:04 pm, Nicolas R ruda...@googlemail.com wrote:



  IE 7 seems to be ok now, but there's a CSS bug I can't figure out (see
  the width of list items, it collapses to the width of the text they
  contain)

  I figured out how to make it work on IE6 (mostly), but as the changes
  are very specific I did not include them in the code. If anyone
  requires ie6 support just ask.

  Chrome is also ok.

  I also added some more data on the api.

  On Feb 6, 10:55 pm, Rick Faircloth r...@whitestonemedia.com wrote:

   Malformed in IE 7...

-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On 
Behalf Of Nicolas R
Sent: Friday, February 06, 2009 1:33 PM
To: jQuery (English)
Subject: [jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' 
with Columns)

v0.6a is out
   http://www.nicolas.rudas.info/jQuery/Finder/

Following up on Nikola's idea, I've also made this:
   http://www.nicolas.rudas.info/jQuery/Finder/v0.6a/api.html

The jQuery API, finder style. It's doesn't give any API docs tho at
the moment, just a list of methods (the json data provided by jquery
are a bit messy and a bit of a hussle to translate to html)- Masquer le 
texte des messages précédents -

 - Afficher le texte des messages précédents -


[jQuery] Re: blockUI not closing in IE

2008-05-22 Thread TiGeRWooD

Hi,

Try this plugin nyroModal ;-)
This one is very powerfull , you can enable modal gallery and many
others things ...

http://nyromodal.nyrodev.com/


[jQuery] [validate] field 1 or field 2

2008-05-22 Thread TiGeRWooD

Hi, is it possible with jquery validate to check 2 fields but only 1
of these 2 fields would be required ...
one or the other ...

I would have at least one phone number of client (work or mobile phone
number) ...

Thanks for your help ...


[jQuery] Re: Superfish with interface plugin ...

2007-07-26 Thread TiGeRWooD


Hi Joel,
Thanks for reply.
http://www.amside.be/index.php
I did this test page with your sample code,  the interface plugin is
not used, just loaded ... Only superfish css is loaded and used ...
And as you can see, the sub sub menu doesn't appear with IE7 ...
Still better, if i put this code

console.log($(document).ready(function(){
   $(ul.nav).superfish({
hoverClass  : sfHover,
currentClass: overideThisToUse, /*new to v1.2a*/
delay   : 500,
animation   : {opacity:show},
speed   : normal
});
}));

(just to log any errors in firebug ... )  the menu works correctly in
IE7 ...



[jQuery] Superfish with interface plugin ...

2007-07-25 Thread TiGeRWooD

Hi,

I tried to used superfish, but i have a bug in IE7 (not tried in ie6),
superfish doesn't work well if the interface plugin is loaded ...

the first submenu are visible but the sub sub menu don't ...

If anyone have ideas ... you 're welcome :)

Thanks in advance.