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

2009-06-13 Thread Nicolas R

Hello all,
I am working on a new version for this plugin to tackle the problems
mentioned here and those received by email. I created a new group for
this plugin to better organise this project. Here I describe the
current status and where it is going:

http://groups.google.com/group/jqueryfinder/browse_thread/thread/62358226be1ff4fa

Please post at the new group for all questions and feedback regarding
this plugin.
http://groups.google.com/group/jqueryfinder


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

2009-06-10 Thread AWV

Has anyone tried to include a multi-select option with jQuery Finder?
I'm thinking of trying checkboxes and adding a method that returns the
selected items.


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

2009-05-21 Thread dfischer

I am having a difficult time using the select method in the onInit
callback.

I am creating an array of items and then calling select as follows:
onInit: function(finderObj) {
var itemsToSelect = [href/item1, href/item2];
$(this).finder(select, itemsToSelect);
}

When this code is run, I get the following error in the Firebug
console:
uncaught exception: jQuery Finder: Target element does not exist

I then added the same code that is on the finder demo for the Select
Item button, modified it a little to parse a comma separated list,
pasted href/item1, href/item2 into the dialog and the correct items
were selected.

Any idea of what I am doing wrong?

Thanks,
Doug

On Apr 1, 11:18 am, Nicolas R ruda...@googlemail.com wrote:
 Tor,

 To select an item when the finder is created you can use the public
 method $('some').finder('select', URLS_ARRAY or URL_STRING or
 DOM_ELEMENTS ). Call this method on the onInit callback.

 There is no function that returns some sort of path for the current
 page. I believe it would be easy to hack one yourself, something like:

 var path = [];
 $('div.ui-finder').find('li.ui-finder-list-item-active  a').each
 (function(){
      path.push( $(this).attr('href') );

 });

 path // = [ 'level1.html', 'level2.html', 'level3.html' ]

 So, you could store the array as a cookie (in string format of course)
 on window.onunload and then on load..

 $('some').finder({
 onInit: function(){  $(this).finder('select',path_as_array) }

 })

 I'm sure there are many ways to achieve this, but the two main things
 to keep in mind is that
 1. you can pass an array of urls to .finder('select', ... ) and it
 will select them in that order; and
 2. you can select the current path by using the path function I
 provided above

 Hope this makes sense

 On Apr 1, 1:06 pm, Tor torgeir.ve...@gmail.com wrote:

  Am wondering if it would be possible to store the expanded state with
  an anchor hash, to allow page reloads?

  --
  -Tor




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

2009-04-07 Thread nag

Nicolas,

I'm having a problem:

Starting up the finder is going smoothly, but on selecting anything
I'm getting an error -- no display, the only thing in the new column
is error. All my lists are being generated using very simple PHP ...
so clicking on a link in the first column loads a page with a ul
list on it. All the list items are enclosed in anchor tags.

Help!

Here's my code:

script type=text/javascript
$(function() {

$('#finder').finder({title : 'Industry Segment Grid',
onItemSelect : 
function(listItem,eventTarget,finderObject){
var anchor = 
$('a',listItem),
href = 
anchor.attr('rel');
},
onFolderSelect : 
function(listItem,eventTarget,finderObject){
var anchor = 
$('a',listItem),
href = 
anchor.attr('rel');
},
onItemOpen : 
function(listItem,newColumn,finderObject){
var anchor = 
$('a',listItem),
href = 
anchor.attr('href');
},
onFolderOpen : 
function(listItem,newColumn,finderObject){
var anchor = 
$('a',listItem),
href = 
anchor.attr('href');
}
});
});
/script

body
ol id=finder
?

foreach($industrylist as $row)
{
echo li class=\ui-finder-folder\a href=\/index.php/
industry_segment/child/ . $row['id'] .  \ . $row
['industry_name'] . /a/li\n;
}

?
/ol
/body



cheers,

Nag


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

2009-04-01 Thread Tor

Am wondering if it would be possible to store the expanded state with
an anchor hash, to allow page reloads?

--
-Tor


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

2009-04-01 Thread Nicolas R

Tor,

To select an item when the finder is created you can use the public
method $('some').finder('select', URLS_ARRAY or URL_STRING or
DOM_ELEMENTS ). Call this method on the onInit callback.

There is no function that returns some sort of path for the current
page. I believe it would be easy to hack one yourself, something like:

var path = [];
$('div.ui-finder').find('li.ui-finder-list-item-active  a').each
(function(){
 path.push( $(this).attr('href') );
});

path // = [ 'level1.html', 'level2.html', 'level3.html' ]

So, you could store the array as a cookie (in string format of course)
on window.onunload and then on load..

$('some').finder({
onInit: function(){  $(this).finder('select',path_as_array) }
})

I'm sure there are many ways to achieve this, but the two main things
to keep in mind is that
1. you can pass an array of urls to .finder('select', ... ) and it
will select them in that order; and
2. you can select the current path by using the path function I
provided above

Hope this makes sense


On Apr 1, 1:06 pm, Tor torgeir.ve...@gmail.com wrote:
 Am wondering if it would be possible to store the expanded state with
 an anchor hash, to allow page reloads?

 --
 -Tor


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

2009-03-14 Thread Nicolas R

OK fixed now thanks for the tip. onItemSelect should return undefined
rather than false (default setting) to show info.

Unfortunately the API displayed there is 1.2.6, its from
http://api.jquery.com/lib/docs/api-docs.js and its hasn't been updated
for a while.

On Mar 13, 8:34 pm, Nikola nik.cod...@gmail.com wrote:
 Hi, I noticed that the API browser 
 @http://www.nicolas.rudas.info/jquery/finder/api.html
 isn't displaying the info.  Is it being updated for 1.7 maybe?
 Thanks...

 On Mar 5, 5:37 pm, Nicolas R ruda...@googlemail.com wrote:

  All right, I added IE6 support.

  Latest files (ui.finder.js,ui.finder-min.js, and ui-finder.ie.css) can
  be found at the 
  trunk:http://code.google.com/p/jqueryfinder/source/browse/trunk

  Its not the same as in decent browsers but its good enough.

  On Mar 4, 7:41 pm, Nicolas R ruda...@googlemail.com wrote:

   Matt,

   I'll get back to you tomorrow with some code snippets. It's been a
   while since I did the bug fixing for IE and I can't remember right now
   what the issues were. And since I'm really smart I didn't save the
   code that fixed the issues. So, yeah, tomorrow I'll have a look and
   post back.

   Cheers

   On Mar 4, 4:47 pm, matt mathias.leimgru...@gmail.com wrote:

Hi Nicolas

first, its a great tool to work with!

Currently I'm trying to use it in Plone CMS as a reference widget.
It works great on nearly all browser (as you said) except on IE6.

My approach was to give fixed height and width to the div's (.ui-
finder-column, .ui-finder-wrapper):
but without happy-end -.-


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.


So here I am and I'm asking for support :-)
a few code snips should be enough.

Thanks in advance
best regards
Matt


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

2009-03-13 Thread Nikola

Hi, I noticed that the API browser @ 
http://www.nicolas.rudas.info/jquery/finder/api.html
isn't displaying the info.  Is it being updated for 1.7 maybe?
Thanks...

On Mar 5, 5:37 pm, Nicolas R ruda...@googlemail.com wrote:
 All right, I added IE6 support.

 Latest files (ui.finder.js,ui.finder-min.js, and ui-finder.ie.css) can
 be found at the 
 trunk:http://code.google.com/p/jqueryfinder/source/browse/trunk

 Its not the same as in decent browsers but its good enough.

 On Mar 4, 7:41 pm, Nicolas R ruda...@googlemail.com wrote:

  Matt,

  I'll get back to you tomorrow with some code snippets. It's been a
  while since I did the bug fixing for IE and I can't remember right now
  what the issues were. And since I'm really smart I didn't save the
  code that fixed the issues. So, yeah, tomorrow I'll have a look and
  post back.

  Cheers

  On Mar 4, 4:47 pm, matt mathias.leimgru...@gmail.com wrote:

   Hi Nicolas

   first, its a great tool to work with!

   Currently I'm trying to use it in Plone CMS as a reference widget.
   It works great on nearly all browser (as you said) except on IE6.

   My approach was to give fixed height and width to the div's (.ui-
   finder-column, .ui-finder-wrapper):
   but without happy-end -.-

   
   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.
   

   So here I am and I'm asking for support :-)
   a few code snips should be enough.

   Thanks in advance
   best regards
   Matt


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

2009-03-05 Thread Nicolas R

All right, I added IE6 support.

Latest files (ui.finder.js,ui.finder-min.js, and ui-finder.ie.css) can
be found at the trunk:
http://code.google.com/p/jqueryfinder/source/browse/trunk

Its not the same as in decent browsers but its good enough.


On Mar 4, 7:41 pm, Nicolas R ruda...@googlemail.com wrote:
 Matt,

 I'll get back to you tomorrow with some code snippets. It's been a
 while since I did the bug fixing for IE and I can't remember right now
 what the issues were. And since I'm really smart I didn't save the
 code that fixed the issues. So, yeah, tomorrow I'll have a look and
 post back.

 Cheers

 On Mar 4, 4:47 pm, matt mathias.leimgru...@gmail.com wrote:

  Hi Nicolas

  first, its a great tool to work with!

  Currently I'm trying to use it in Plone CMS as a reference widget.
  It works great on nearly all browser (as you said) except on IE6.

  My approach was to give fixed height and width to the div's (.ui-
  finder-column, .ui-finder-wrapper):
  but without happy-end -.-

  
  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.
  

  So here I am and I'm asking for support :-)
  a few code snips should be enough.

  Thanks in advance
  best regards
  Matt


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

2009-03-04 Thread matt

Hi Nicolas

first, its a great tool to work with!

Currently I'm trying to use it in Plone CMS as a reference widget.
It works great on nearly all browser (as you said) except on IE6.

My approach was to give fixed height and width to the div's (.ui-
finder-column, .ui-finder-wrapper):
but without happy-end -.-


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.


So here I am and I'm asking for support :-)
a few code snips should be enough.

Thanks in advance
best regards
Matt


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

2009-03-04 Thread Nicolas R

Matt,

I'll get back to you tomorrow with some code snippets. It's been a
while since I did the bug fixing for IE and I can't remember right now
what the issues were. And since I'm really smart I didn't save the
code that fixed the issues. So, yeah, tomorrow I'll have a look and
post back.

Cheers

On Mar 4, 4:47 pm, matt mathias.leimgru...@gmail.com wrote:
 Hi Nicolas

 first, its a great tool to work with!

 Currently I'm trying to use it in Plone CMS as a reference widget.
 It works great on nearly all browser (as you said) except on IE6.

 My approach was to give fixed height and width to the div's (.ui-
 finder-column, .ui-finder-wrapper):
 but without happy-end -.-

 
 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.
 

 So here I am and I'm asking for support :-)
 a few code snips should be enough.

 Thanks in advance
 best regards
 Matt


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

2009-02-27 Thread Nicolas R

Ok, first public version of jQuery Finder is now available. I've fixed
a few bugs and added/changed some methods.

Download from http://code.google.com/p/jqueryfinder/downloads/list
Zip file contains all necessary scripts and styles.


On Feb 20, 9:34 am, Nicolas R ruda...@googlemail.com wrote:
 Your welcome, glad you find it useful.

 To not display a new column, the onItemSelect callback must return
 false. So in that callback you check if the selected item was a pdf,
 and if yes, return false.

 If you dont return false, Finder will fetch the link via ajax, and
 display the contents in a new column. The weird characters is your pdf
 document being treated as text characters by the browser.

 Please note that this is not a stable release, in fact I found a bug
 the other day which I didnt have time to fix.

 On Feb 19, 11:08 pm, TiGeRWooD tigwod.e...@gmail.com wrote:

  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: 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: New Plugin: jQuery Finder (Mac-style 'Treeview' with Columns)

2009-02-19 Thread Nicolas R

Your welcome, glad you find it useful.

To not display a new column, the onItemSelect callback must return
false. So in that callback you check if the selected item was a pdf,
and if yes, return false.

If you dont return false, Finder will fetch the link via ajax, and
display the contents in a new column. The weird characters is your pdf
document being treated as text characters by the browser.

Please note that this is not a stable release, in fact I found a bug
the other day which I didnt have time to fix.



On Feb 19, 11:08 pm, TiGeRWooD tigwod.e...@gmail.com wrote:
 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: New Plugin: jQuery Finder (Mac-style 'Treeview' with Columns)

2009-02-11 Thread Todd Parker

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)


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

2009-02-07 Thread Nicolas R

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)


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

2009-02-07 Thread Rick Faircloth

Hi, Nicolas...looking good in IE7 now.

Question:

Does jQuery Finder read directories and display the
contents dynamically?  I'm looking for something that
will do that...

Thanks,

Rick

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On 
 Behalf Of Nicolas R
 Sent: Saturday, February 07, 2009 2:04 PM
 To: jQuery (English)
 Subject: [jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with 
 Columns)
 
 
 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)



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

2009-02-07 Thread Jack Killpatrick

Rick, this might do the trick for you: jQuery file tree

http://abeautifulsite.net/notebook/58

- Jack

Rick Faircloth wrote:

Hi, Nicolas...looking good in IE7 now.

Question:

Does jQuery Finder read directories and display the
contents dynamically?  I'm looking for something that
will do that...

Thanks,

Rick

  

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


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)




  




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

2009-02-07 Thread Rick Faircloth
That looks perfect!

 

Thanks for the tip, Jack!

 

Rick

 

From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf 
Of Jack Killpatrick
Sent: Saturday, February 07, 2009 7:19 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with 
Columns)

 

Rick, this might do the trick for you: jQuery file tree

http://abeautifulsite.net/notebook/58

- Jack

Rick Faircloth wrote: 

Hi, Nicolas...looking good in IE7 now.
 
Question:
 
Does jQuery Finder read directories and display the
contents dynamically?  I'm looking for something that
will do that...
 
Thanks,
 
Rick
 
  

-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf 
Of Nicolas R
Sent: Saturday, February 07, 2009 2:04 PM
To: jQuery (English)
Subject: [jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with 
Columns)
 
 
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  mailto:r...@whitestonemedia.com 
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)


 
 
  

 



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

2009-02-06 Thread Nicolas R

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)


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

2009-02-06 Thread Rick Faircloth

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)



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

2009-02-05 Thread Nicolas R

I've been working on this for a while today.

I added the functionality Cliff requested, works like a charm. So now
you can get all your data via xml or json or whatever, create a nested
list and then call the finder function on that list to create a
finder.

I haven't uploaded this yet, I will in the following couple of days.

I want to use jquery 1.3 for this plugin as it will save me a few
lines of code, especially the closest function. Since I'm going to be
doing this I figured to also make use of the themeroller and make it
theme-able.

Any suggestions on how to best tackle this? Are there any special
requirements? Any jQuery UI people around here?

Cheers

On Jan 23, 7:32 pm, Nicolas R ruda...@googlemail.com wrote:
 @Cliff,
 I remember that somewhere in the source there's provision for what
 you're asking (the first version was like that). I'm also sure that
 its not implemented and that it will require quite a bit of fiddling
 to get it to work. I'll check the source and do some tests over the
 weekend and if I have time I will do it, otherwise I'll post info on
 how to do it yourself.

 Sorry of not being able to help at the moment.

 Nicolas

 On Jan 23, 11:03 am, Cliff clifford.me...@gmail.com wrote:

  Can you give me any hints on how I could modify this to read in the
  various levels from an existing ul on the page?  Or form a set of
  nested div's or from provided XML?

  The reason I ask is that I think it is much easier to navigate this
  way from other tree based data, and if JS was disabled for a given
  page, you could still show the entire ul as plaintext.


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

2009-01-23 Thread Cliff


Can you give me any hints on how I could modify this to read in the
various levels from an existing ul on the page?  Or form a set of
nested div's or from provided XML?

The reason I ask is that I think it is much easier to navigate this
way from other tree based data, and if JS was disabled for a given
page, you could still show the entire ul as plaintext.


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

2009-01-23 Thread Cliff



On Dec 8 2008, 5:25 am, Nicolas R ruda...@googlemail.com wrote:
 Greetings!

 I've put together a plugin that creates a mac-style finder out of a
 list. The plugin is still in development (ALPHA) and it needs some
 testing, especially on IE.

 The purpose of this plugin is to provide an alternative to treeview
 navigation. Making it look just like the Finder on a Mac is not my
 goal, I am after its core functionality. Having said this, I think
 that implementing useful features that exist on Mac's Finder (search,
 toolback w/ options, etc) is time well spent.

 You can find the plugin ( demo) 
 here:http://www.nicolas.rudas.info/jQuery/Finder/

 I'm posting this here as I'm after feedback, contributions
 (especially), and testers, so if anyone's interested please post here.
 I hope the source code is readable and self-explanatory, I did comment
 a lot on some things so it should make some sense. As this is an alpha
 release, I've just included a link to the script in the demo page, and
 a link to a zip file that contains the demo page along with css 
 images used. The zip file is what you are probably after, as the css
 file is essential.

 Cheers


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

2009-01-23 Thread Nicolas R

@Cliff,
I remember that somewhere in the source there's provision for what
you're asking (the first version was like that). I'm also sure that
its not implemented and that it will require quite a bit of fiddling
to get it to work. I'll check the source and do some tests over the
weekend and if I have time I will do it, otherwise I'll post info on
how to do it yourself.

Sorry of not being able to help at the moment.

Nicolas

On Jan 23, 11:03 am, Cliff clifford.me...@gmail.com wrote:
 Can you give me any hints on how I could modify this to read in the
 various levels from an existing ul on the page?  Or form a set of
 nested div's or from provided XML?

 The reason I ask is that I think it is much easier to navigate this
 way from other tree based data, and if JS was disabled for a given
 page, you could still show the entire ul as plaintext.


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

2009-01-16 Thread Nicolas R

@ Adam,
Unfortunately no, I haven't done any testing on IE = no fixing. I
imagine that it's not a lot of work to be done, mostly setting height:
1% to most of the elements and perhaps adding some width properties.
I'm on a mac so testing on IE is not easy for me.

Nicolas

On Jan 16, 3:18 am, gobagoo atist...@gmail.com wrote:
 Great plugin.  Have you made any progress on getting IE working.  I
 would be happy to help as this is a feature that I would love to get
 working on my site.

 Thanks,
 Adam

 On Dec 8 2008, 6:25 am, Nicolas R ruda...@googlemail.com wrote:

  Greetings!

  I've put together a plugin that creates a mac-style finder out of a
  list. The plugin is still in development (ALPHA) and it needs some
  testing, especially on IE.

  The purpose of this plugin is to provide an alternative to treeview
  navigation. Making it look just like the Finder on a Mac is not my
  goal, I am after its core functionality. Having said this, I think
  that implementing useful features that exist on Mac's Finder (search,
  toolback w/ options, etc) is time well spent.

  You can find the plugin ( demo) 
  here:http://www.nicolas.rudas.info/jQuery/Finder/

  I'm posting this here as I'm after feedback, contributions
  (especially), and testers, so if anyone's interested please post here.
  I hope the source code is readable and self-explanatory, I did comment
  a lot on some things so it should make some sense. As this is an alpha
  release, I've just included a link to the script in the demo page, and
  a link to a zip file that contains the demo page along with css 
  images used. The zip file is what you are probably after, as the css
  file is essential.

  Cheers


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

2009-01-16 Thread Felipe Paiva
A really nice plugin! The only thing missing in my view is a small bread
cump as in the mac! ;)


On Fri, Jan 16, 2009 at 5:20 AM, Nicolas R ruda...@googlemail.com wrote:


 @ Adam,
 Unfortunately no, I haven't done any testing on IE = no fixing. I
 imagine that it's not a lot of work to be done, mostly setting height:
 1% to most of the elements and perhaps adding some width properties.
 I'm on a mac so testing on IE is not easy for me.

 Nicolas

 On Jan 16, 3:18 am, gobagoo atist...@gmail.com wrote:
  Great plugin.  Have you made any progress on getting IE working.  I
  would be happy to help as this is a feature that I would love to get
  working on my site.
 
  Thanks,
  Adam
 
  On Dec 8 2008, 6:25 am, Nicolas R ruda...@googlemail.com wrote:
 
   Greetings!
 
   I've put together a plugin that creates a mac-style finder out of a
   list. The plugin is still in development (ALPHA) and it needs some
   testing, especially on IE.
 
   The purpose of this plugin is to provide an alternative to treeview
   navigation. Making it look just like the Finder on a Mac is not my
   goal, I am after its core functionality. Having said this, I think
   that implementing useful features that exist on Mac's Finder (search,
   toolback w/ options, etc) is time well spent.
 
   You can find the plugin ( demo) here:
 http://www.nicolas.rudas.info/jQuery/Finder/
 
   I'm posting this here as I'm after feedback, contributions
   (especially), and testers, so if anyone's interested please post here.
   I hope the source code is readable and self-explanatory, I did comment
   a lot on some things so it should make some sense. As this is an alpha
   release, I've just included a link to the script in the demo page, and
   a link to a zip file that contains the demo page along with css 
   images used. The zip file is what you are probably after, as the css
   file is essential.
 
   Cheers




-- 
Atenciosamente,
Felipe Paiva


Mobile:  +55 81 9692-2631
Home:   +55 81 3432-4109
Work:+55 81 3224-3010 R:28

Msn / Google Talk / Skype
felipe.pa...@gmail.com



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

2009-01-15 Thread gobagoo

Great plugin.  Have you made any progress on getting IE working.  I
would be happy to help as this is a feature that I would love to get
working on my site.

Thanks,
Adam

On Dec 8 2008, 6:25 am, Nicolas R ruda...@googlemail.com wrote:
 Greetings!

 I've put together a plugin that creates a mac-style finder out of a
 list. The plugin is still in development (ALPHA) and it needs some
 testing, especially on IE.

 The purpose of this plugin is to provide an alternative to treeview
 navigation. Making it look just like the Finder on a Mac is not my
 goal, I am after its core functionality. Having said this, I think
 that implementing useful features that exist on Mac's Finder (search,
 toolback w/ options, etc) is time well spent.

 You can find the plugin ( demo) 
 here:http://www.nicolas.rudas.info/jQuery/Finder/

 I'm posting this here as I'm after feedback, contributions
 (especially), and testers, so if anyone's interested please post here.
 I hope the source code is readable and self-explanatory, I did comment
 a lot on some things so it should make some sense. As this is an alpha
 release, I've just included a link to the script in the demo page, and
 a link to a zip file that contains the demo page along with css 
 images used. The zip file is what you are probably after, as the css
 file is essential.

 Cheers


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

2009-01-15 Thread Nikola

Super plug-in!  the first thing that came to mind when I tried it out
was the new jQuery 1.3 API...


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

2008-12-08 Thread Nicolas R

Yes I know, I haven't tested it on IE and I have done nothing for
supporting it (no css hacks or conditional comments). I am sure that
it has some issues, especially with CSS support. Hopefully the issues
are just css related and don't break the plugin's functionality.

As the CMS, that's the purpose I'm using it. One for seeing already
existing 'pages' and stuff, and two for file management (when linking
to stuff, inserting images etc). Although I find it much easier that
normal treeview navigation, I am not sure if others agree as I haven't
asked and/or tested it properly. That's also why I'm posting it
here :)

Thanks for replying, I'll be glad to see your contribution.

On Dec 8, 1:29 pm, Liam Potter [EMAIL PROTECTED] wrote:
 it seems your CSS needs a good look at in IE.
 I'm in work right now but I'l lsee if I can't fix it up in Ie for you.

 I like the idea of this, would be good for CMS use.

 Nicolas R wrote:
  Greetings!

  I've put together a plugin that creates a mac-style finder out of a
  list. The plugin is still in development (ALPHA) and it needs some
  testing, especially on IE.

  The purpose of this plugin is to provide an alternative to treeview
  navigation. Making it look just like the Finder on a Mac is not my
  goal, I am after its core functionality. Having said this, I think
  that implementing useful features that exist on Mac's Finder (search,
  toolback w/ options, etc) is time well spent.

  You can find the plugin ( demo) 
  here:http://www.nicolas.rudas.info/jQuery/Finder/

  I'm posting this here as I'm after feedback, contributions
  (especially), and testers, so if anyone's interested please post here.
  I hope the source code is readable and self-explanatory, I did comment
  a lot on some things so it should make some sense. As this is an alpha
  release, I've just included a link to the script in the demo page, and
  a link to a zip file that contains the demo page along with css 
  images used. The zip file is what you are probably after, as the css
  file is essential.

  Cheers


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

2008-12-08 Thread Liam Potter


it seems your CSS needs a good look at in IE.
I'm in work right now but I'l lsee if I can't fix it up in Ie for you.

I like the idea of this, would be good for CMS use.

Nicolas R wrote:

Greetings!

I've put together a plugin that creates a mac-style finder out of a
list. The plugin is still in development (ALPHA) and it needs some
testing, especially on IE.

The purpose of this plugin is to provide an alternative to treeview
navigation. Making it look just like the Finder on a Mac is not my
goal, I am after its core functionality. Having said this, I think
that implementing useful features that exist on Mac's Finder (search,
toolback w/ options, etc) is time well spent.

You can find the plugin ( demo) here: 
http://www.nicolas.rudas.info/jQuery/Finder/

I'm posting this here as I'm after feedback, contributions
(especially), and testers, so if anyone's interested please post here.
I hope the source code is readable and self-explanatory, I did comment
a lot on some things so it should make some sense. As this is an alpha
release, I've just included a link to the script in the demo page, and
a link to a zip file that contains the demo page along with css 
images used. The zip file is what you are probably after, as the css
file is essential.

Cheers
  




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

2008-12-08 Thread Alexandre Plennevaux
quite a cool demo, thanks for sharing, works fine here on PC: windows XP SP3
Firefox 3.0


On Mon, Dec 8, 2008 at 2:47 PM, Nicolas R [EMAIL PROTECTED] wrote:


 Yes I know, I haven't tested it on IE and I have done nothing for
 supporting it (no css hacks or conditional comments). I am sure that
 it has some issues, especially with CSS support. Hopefully the issues
 are just css related and don't break the plugin's functionality.

 As the CMS, that's the purpose I'm using it. One for seeing already
 existing 'pages' and stuff, and two for file management (when linking
 to stuff, inserting images etc). Although I find it much easier that
 normal treeview navigation, I am not sure if others agree as I haven't
 asked and/or tested it properly. That's also why I'm posting it
 here :)

 Thanks for replying, I'll be glad to see your contribution.

 On Dec 8, 1:29 pm, Liam Potter [EMAIL PROTECTED] wrote:
  it seems your CSS needs a good look at in IE.
  I'm in work right now but I'l lsee if I can't fix it up in Ie for you.
 
  I like the idea of this, would be good for CMS use.
 
  Nicolas R wrote:
   Greetings!
 
   I've put together a plugin that creates a mac-style finder out of a
   list. The plugin is still in development (ALPHA) and it needs some
   testing, especially on IE.
 
   The purpose of this plugin is to provide an alternative to treeview
   navigation. Making it look just like the Finder on a Mac is not my
   goal, I am after its core functionality. Having said this, I think
   that implementing useful features that exist on Mac's Finder (search,
   toolback w/ options, etc) is time well spent.
 
   You can find the plugin ( demo) here:
 http://www.nicolas.rudas.info/jQuery/Finder/
 
   I'm posting this here as I'm after feedback, contributions
   (especially), and testers, so if anyone's interested please post here.
   I hope the source code is readable and self-explanatory, I did comment
   a lot on some things so it should make some sense. As this is an alpha
   release, I've just included a link to the script in the demo page, and
   a link to a zip file that contains the demo page along with css 
   images used. The zip file is what you are probably after, as the css
   file is essential.
 
   Cheers