Re: [Proto-Scripty] Re: Where is ver. 2.0 is coming?

2011-11-29 Thread Pablo Aravena
Is an object oriented language, and you can combine it with a selector
engine like jquery. I think is a good match for a migration, just my point
of view.

Regards
Pablo




On Mon, Nov 28, 2011 at 11:57 AM, buda www...@pochta.ru wrote:

 But it's only new syntax sugar - not framework like Prototype with
 many features!!

 On 28 ноя, 18:48, Pablo Aravena paraven...@gmail.com wrote:
  Hi buda
 
  I think there will be no new releases of prototype in the near future.
 That
  is sad, but some months ago I began looking at CoffeScript and I began
  thinking that it will be the natural replace for prototype library. Also
  many of the original creators of the prototype library are working on
 that
  project.
 
  See this presentation:
 
  https://sstephenson.s3.amazonaws.com/presentations/fowa-2011-coffeesc...
 
  Saludos
  Pablo
 
 
 
 
 
 
 
  On Mon, Nov 28, 2011 at 8:30 AM, buda www...@pochta.ru wrote:
   Who knows when is early code ver.2.0 of the library will appear?
 
   --
   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.

 --
 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.



-- 
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.



Re: [Proto-Scripty] Where is ver. 2.0 is coming?

2011-11-28 Thread Pablo Aravena
Hi buda

I think there will be no new releases of prototype in the near future. That
is sad, but some months ago I began looking at CoffeScript and I began
thinking that it will be the natural replace for prototype library. Also
many of the original creators of the prototype library are working on that
project.

See this presentation:

https://sstephenson.s3.amazonaws.com/presentations/fowa-2011-coffeescript.pdf


Saludos
Pablo

On Mon, Nov 28, 2011 at 8:30 AM, buda www...@pochta.ru wrote:

 Who knows when is early code ver.2.0 of the library will appear?

 --
 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.



-- 
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.



Re: [Proto-Scripty] Problem with crossfading complex divs

2011-09-13 Thread Pablo Aravena
Hi Chris

I think your problem is because you are using mouseover/mouseout
instead of mouseenter/mouseleave

Please review this link for a further explanation

http://stackoverflow.com/questions/1651469/mouseover-and-mouseout-events-firing-on-children

Regards
Pablo

On Tue, Sep 13, 2011 at 8:20 AM, Chris Sansom ch...@highway57.co.uk wrote:
 On 13 Sep 2011, at 15:29, Chris Sansom wrote:

 I /think/ what's happening is that when you roll the mouse over various 
 elements inside the div JS thinks it's mousing out and over repeatedly

 Just been out for a walk and had a think about this. I think what I need to 
 do is somehow prevent the mouseout from restarting the fading if it's 
 followed by a mouseover within, say, a quarter? a tenth? of a second. I'll 
 see if I can find a way to do this, but any hints would be most welcome at 
 this stage.

 --
 Cheers... Chris
 Highway 57 Web Development -- http://www.highway57.co.uk/

 --
 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.



-- 
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.



Re: [Proto-Scripty] Themes, UI Controls, and the Future of Prototype/Scriptaculous

2011-08-13 Thread Pablo Aravena
Excellent, I will see what I can do

Thanks

On Sat, Aug 13, 2011 at 9:39 AM, Victor vkhomyac...@gmail.com wrote:

 OK, you want it - you got the feedback.

 1. Input fields have slightly different height depending on OS, fonts,
 browsers etc., so `div class=my-combobox-button gradient/div` and `div
 class=my-datepicker-select-button/div` are looking bad. Either you
 set both heights (of INPUT and of DIV) to the same value explicitly, or
 instead of additional DIVs make background image on INPUTs.

 2. It is not convenient to call every time Event.observe(...) or new
 MY.DatePicker(...) explicitly (e.g. I have many HTML fragments loaded
 dynamically via AJAX or created in JavaScript). What do you think about
 unobtrusive creation? You can create DatePicker and ComboBox when the
 input field becomes focused first time.

 --
 With best regards,
   Victor

  --
 You received this message because you are subscribed to the Google Groups
 Prototype  script.aculo.us group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/prototype-scriptaculous/-/rdmFHSR-PYUJ.

 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.


-- 
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.



Re: [Proto-Scripty] Themes, UI Controls, and the Future of Prototype/Scriptaculous

2011-08-11 Thread Pablo Aravena
Hi

Your concern is the same of mine, some weeks ago I have published a new
release of my little project called MyTableGrid (see the samples at
http://pabloaravena.info/mytablegrid/samples), then until now I didn't
receive any feedback. That is really sad for me because of all the work and
effort I put :-(  but anyway maybe I think is a good idea to know how we can
contribute to scripty2 UI, I have no problem moving my work there but maybe
is lot of work :-).



On Wed, Aug 10, 2011 at 8:50 AM, shellster shellsterd...@gmail.com wrote:

 As a veteran PrototypeJS and Scriptaculous user, I'm curious about the
 future of these great libraries.  As a web developer, I'm also no
 stranger to JQuery.  One of the nice things about JQuery is that it
 provides a one-size-fits-all javascript library which provides
 virtually everything you need to develop 99% of your web
 applications.  It provides autocomplete drop-downs, multi-selects, div
 dialogues, alerts, and modal boxes, as well as datepickers.  It also
 provides a nice theme system which makes it incredibly easy to
 customize these UI elements to match my color theme on a website.

 I personally much prefer the PrototypeJS way of doing things in
 general.  However, I've spent a great deal of time rounding up
 scripts, or writing my own, to do all the things that JQuery has
 effectively built in.  I've seen some efforts to provide these UI type
 features by MadRobby in his scripty2 library.  Though I've already
 incorporated his work into several sites I've developed, the
 documentation is rough, and there doesn't seem to be much progress
 being made on this library.  I know MadRobby is incredibly busy, and I
 am sure he's working on it whenever he has a chance.

 There have also been many attempts to create repositories for
 PrototypeJS libraries.  However, none of them are very user friendly,
 and most of them appear to be run-down and not up-to-date.  As a
 PrototypeJS advocate, this makes PrototypeJS much less accessible for
 new developers.  A lot of developers pass over the amazing
 functionality of of PrototypeJS and Scriptaculous/Scripty2 for
 libraries such as JQuery.

 That's the current lay of the land as far as I can tell.  So here are
 my questions:

 Is there any master plan for eventually creating some sort of unified
 complete Javascript library with a UI component (probably via
 Scripty2)?

 Is there a plan to create a more official website for tracking
 PrototypeJS extension libraries?

 Is there a plan to make Scripty2 ui elements themeable?

 I recognize that PrototypeJS and Scripty2 are a community effort, and
 maintained by donated time from very busy individuals.  What is the
 best way for me to get involved to either improve current
 functionality of the libraries or add new functionality?  I'm a pretty
 skill javascript developer, and I would love to contribute to the
 PrototypeJS universe.

 Is there some sort of experimental branch for PrototypeJS and/or
 Scripty2 where developers can submit more out there functionality
 for consideration?  When I look at the Ticket Tracker for PrototypeJS,
 I see a lot of patches submitted which never get added because they
 don't really fit the current goals of the project, or add
 functionality which is too far out of the base line for the current
 version of PrototypeJS.  This is certainly a valid reason to not add
 functionality, but is also potentially kills a lot of innovation.

 Thanks for any answers from either the PrototypeJS team or madrobby/
 anyone involved with Scripty2.  Please don't take any of the above as
 a negative critique of PrototypeJs or Scripty2.  I love both projects,
 and I very much want to see them flourish, and I am just curious to
 see where the current developers see the project moving in the future.

 --
 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.



-- 
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] MyTableGrid new release, please give me your feedbacks

2011-07-28 Thread Pablo Aravena
Hi all

After a long time I have published a new release of mytablegrid,
please review it a give me your feedbacks

http://pabloaravena.info/mytablegrid

Thanks
Pablo

-- 
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.



Re: [Proto-Scripty] Combo box?

2011-07-26 Thread Pablo Aravena
Have a look to my project

https://github.com/paravena/myui

I'm quite sure you will find it very useful

Regards
Pablo

On Tue, Jul 26, 2011 at 1:38 PM, Shane McCarron halindr...@gmail.com wrote:
 Does anyone know of a *stable* combobox implementation that uses Prototype?

 --
 Shane McCarron
 halindr...@gmail.com

 --
 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.


-- 
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.



Re: [Proto-Scripty] Prototype ajax based grid control

2011-01-03 Thread Pablo Aravena
Hi Phil

Please review my project I hope you find it useful

http://pabloaravena.info/mytablegrid

Pablo



On Mon, Jan 3, 2011 at 3:19 PM, Phil Petree phil.pet...@gmail.com wrote:
 Hi All!

 I need to implement an ajax based edit in place grid control for a
 management console (admin side of a site).

 Essentially, each row will have fields formatted as: STRING, STRING, BOOL,
 BOOL, BOOL, DATE, STRING and admins could change any or all of these fields.

 Any suggestions on an existing grid control thats easy to use?

 Thanks!

 Phil

 --
 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-scriptacul...@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.


-- 
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-scriptacul...@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.



Re: [Proto-Scripty] Re: adding InPlaceEditor to each table cell

2010-10-29 Thread Pablo Aravena
Maybe you can try using MyTableGrid :-D

http://pabloaravena.info/mytablegrid

On Fri, Oct 29, 2010 at 6:13 AM, Eric lefauv...@gmail.com wrote:
 I've done that before.
 I cannot post the code here because it is in a complex application/
 framework but here are the few points you need to make it work:
 - Add a classname like 'NeedIPE' to your TD's, and observe the click
 on the table or anything on top of it.
 - In you event handler, get the clicked TD with something like
 e.findElement('td.NeedIPE');
 - if there is a TD found, create the InPlaceEditor, and remove the
 NeedIPE class, so next time you click on it, a new IPE won't be
 created
 - Call enterEditMode() 's method of your InPlaceEditor() so you won't
 need to click a second time.

 Also you may disable the highlight effect of the InPlaceEditor, so the
 cells you already clicked wont have different behavior than the ones
 you haven't.
 (I did at first try to implement the highlight effect on other td's
 but with a big table, it is just very bad looking).

 Eric

 On Oct 28, 12:34 am, BrentNicholas brentnicho...@gmail.com wrote:
 Hi all,

 I've been wrestling with this for a little bit now and figure it's
 time to ask for help. I can't seem to find anything on the web.

 I have a dynamicly generated table, I want to have an InPlaceEditor
 instance on each table cell. From what I can tell you need to do a
 'new' object on it for every cell so that the hover over highlight
 shows, letting you know that the InPlaceEditor is connected to the
 table cell.

 Table Struct:
 (The p tag was what I saw in examples and am using it since that's
 what works now)
 table id=idProgramsTBL
 tr class=mainRow
         td id=tdPrgCdp id=idPrgCdP#ProgramUID#
 class=clsPrgCdP#ProgramCode#/p/td

 I've tried the following, to no avail:

 // this works but has the problem described below
 $('idProgramsTBL').select('[class=clsPrgCdP]').invoke(observe,
 click, function(event){ codeEditInPlace(this.id); });

 // this works but is incorrect as it will create a new instance of the
 InPlaceEditor on each 'click'
 // thus you can get 1 to n editors in the cell for every click
 // Also, this connects the editor after the click, so you end up
 clicking twice
 function codeEditInPlace(id)
 {
         new Ajax.InPlaceEditor(id ,'act_setProgramCode.cfm?ProgramUID='+id,
                 {
                         onFailure: placeError,
                         onComplete: refreshProgramCode,
                         rows: 2,
                         cols: 20
                 }
         );

 }

 The problem is that the above is based on creating and attaching the
 InPlaceEditor when the user clicks, vs after the Ajax.Request
 completes. I am calling the .invoke.observe statement above in a
 function fired by the onComplete call back of Ajax.Request

 So how do I find all the items of this class (class name of table cell
 or P tag) and create a new InPlaceEditor on it.

 I've got the following to get the classes of the P tags in the table
 cells:
 $('idResultsTableTBL').select('[class=clsPrgCdP]')

 I found this but I don't think it's of help:
 var codeCellArray =  $A(['clsPrgCd']);

 codeCellArray.each(function(aCell) {
         alert(aCell);

 });

 Thoughts?

 Thanks for your time,
 Brent

 --
 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-scriptacul...@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.



-- 
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-scriptacul...@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.



Re: [Proto-Scripty] Re: Please help - question on JSF + Prototype

2010-09-01 Thread Pablo Aravena
Hi Mel

As far as I know it depends on JSF framework you are using, for example a
friend told me that ICEFaces uses prototype as its JS library and JQuery and
Prototype have some issues :-(. The question is what JSF framework are you
using now

Regards
Pablo Aravena


On Wed, Sep 1, 2010 at 4:36 PM, Mel melindasa...@texashealth.org wrote:

 Sorry for the incompleteness of my post.  My question is, can
 PROTOTYPE work for the scenario I described?  Thank you.

 On Sep 1, 3:32 pm, Mel melindasa...@texashealth.org wrote:
  I've been trying to get jQuery to work in my JSF page but to no avail.
 
  Just for some background I have a very simple JSF page and what I was
  trying to get jQuery to do is when I enter a value in a text field I
  then tab to the next field I need to make an ajax call to a managed
  bean and have it return a value that I can use to select an option in
  a drop down field in the same form.  I did not want to waste anyone's
  time by putting a lot of code in here and thought I'd just ask this
  question.
 
  Any help/direction would be greatly appreciated.
 
  Thank you.

 --
 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-scriptacul...@googlegroups.com.
 To unsubscribe from this group, send email to
 prototype-scriptaculous+unsubscr...@googlegroups.comprototype-scriptaculous%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/prototype-scriptaculous?hl=en.



-- 
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-scriptacul...@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] New Release of MyTableGrid

2010-08-22 Thread Pablo Aravena
Hi
I have published a new release of MyTableGrid

Fixed bugs

When a cell is clicked with the mouse and then click in one up or down the
data grid doesn't respond
The column resizing doesn't work properly, when there are cells containing
long texts
Drop downs menus don't hide after mouse out event
All image references were removed from library code

New Features

Now the data grid is sorted just by clicking in one of the header columns
Modified cells are signed by a small icon at the upper left corner


Usability features

Now you just need to import one javascript library in your html code
Images are only referenced in CSS files and they are included inside the CSS
folder,
that means that you don't have to change image paths

See the samples page
http://pabloaravena.info/mytablegrid/samples/sample2.php

Any feedback is always welcome

Regards
Pablo Aravena

-- 
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-scriptacul...@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] MyTableGrid Project

2010-03-30 Thread Pablo Aravena
Hi friends

I will began to work in this project again and I need your feedback
for elaborating a list of enhancements and also a list of new features to be
implemented in the following releases. Please go to this page a see my
project:

http://pabloaravena.info/mytablegrid

Have an excellent day

Regards
Pablo Aravena

-- 
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-scriptacul...@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.