[Proto-Scripty] Re: Combo box?

2011-07-28 Thread T.J. Crowder
Chosen looks really cool. The problem with Chosen is (quoting from the website): What browsers are supported? All modern browsers are support (Firefox, Chrome, Safari and IE9). Legacy support for IE8 is also enabled. So, legacy support for the 30% of the general populace using IE8 (and I've

[Proto-Scripty] Re: Combo box?

2011-07-28 Thread T.J. Crowder
Chosen looks really cool. The problem with Chosen is (quoting from the website): What browsers are supported? All modern browsers are support (Firefox, Chrome, Safari and IE9). Legacy support for IE8 is also enabled. So, legacy support for the 30% of the general populace using IE8 (and I've

[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

[Proto-Scripty] semi-colon complaint and other 1-7

2011-07-28 Thread kstubs
I'm using eclipse editor and getting some syntax complaints, for example the following: From appx. line: 4000 while ( (chunker.exec(), m = chunker.exec(soFar)) !== null ) { soFar = m[3]; parts.push( m[1] ); if ( m[2] ) { extra = m[3]; break; } } Complains that the comma after

[Proto-Scripty] IE 9 issues with Insertion

2011-07-28 Thread S L
I have no problem displaying the page in IE7 and 8. But in IE9, these menus are missing. Here's the code: new Insertion.Bottom($(secondaryNav), MyShop.Extranet.MyChart.secondaryMenuHtml); new Insertion.Bottom($(primaryNav), MyShop.Extranet.MyChart.primaryMenuHtml); new

[Proto-Scripty] Re: semi-colon complaint and other 1-7

2011-07-28 Thread T.J. Crowder
Your title was semi-colon complaint but your example was that Eclipse complains about a comma. If Eclipse is really saying it thinks that comma should be a dot, then yes, it's an Eclipse issue. The comma operator[1] is perfectly valid there. [1] http://es5.github.com/#x11.14 HTH, -- T.J.

[Proto-Scripty] Re: IE 9 issues with Insertion

2011-07-28 Thread T.J. Crowder
What do you figure the odds are that people are going to need to know more about your code than that? Like, you know, what your page's HTML looks like, what those strings are you're inserting. Trivial points, really... ;-) -- T.J. Crowder Independent Software Engineer tj / crowder software / com

[Proto-Scripty] Re: semi-colon complaint and other 1-7

2011-07-28 Thread kstubs
Thanks. I started out reporting an issue on a semi-colon, but thought this was more of an obvious problem (that isn't a problem). So the semi-colon issue is still there, and I think I can resolve them, but seems they occur after things like: Here's an example from event.js function(value) {

[Proto-Scripty] Custom event handlers

2011-07-28 Thread kstubs
Anything wrong with this: document.observe('EventQuery:lookup_event#eventSignOnForm', this.handleGetEventForEdit.bindAsEventListener(this)); Works fine when I throw the event without the #eventSignOnForm, and observe without the additional hash value. Just not sure if there is something going