[JSMentors] Beuatiful UI like ExtJs but in Jquery?

2011-04-26 Thread John
Are there a good UI libraries?( not jquery UI) i need forms,controls etc -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive, visit here: http://www.mail-archive.com/jsmentors@googlegr

[JSMentors] Flow - reviewing and sharing my new library

2011-04-26 Thread bemson
Hello all, My name is Bemi Faison. I'm the author of Flow, a framework for defining and executing related functions. ( https://github.com/bemson/Flow/ ) I'm of the notion that the concept is more valuable than my implementation. To that end, I have completed the API documentation, and recently up

Re: [JSMentors] Beuatiful UI like ExtJs but in Jquery?

2011-04-26 Thread Chaitanya Sharma
If you haven't tried, jquery-aristois a nice theme that goes along with jquery. I'm not sure if it'll suite your needs, but is definitely worth a look. -Chaitanya On Sun, Apr 24, 2011 at 10:02 AM, John wrote: > Are there a good UI libraries?( n

Re: [JSMentors] Beuatiful UI like ExtJs but in Jquery?

2011-04-26 Thread Jeremy Solarz
Looks really good. Do you know how the browser support is? How does it look in IE7/8? Couldn't find examples in the blog post here http://taitems.tumblr.com/post/482577430/introducing-aristo-a-jquery-ui-theme On Tue, Apr 26, 2011 at 9:12 AM, Chaitanya Sharma wrote: > If you haven't tried, > jq

[JSMentors] Re: Flow - reviewing and sharing my new library

2011-04-26 Thread Scott Sauyet
Bemi Faison wrote: > [RE:] Flow, a framework for defining and executing related functions. > (https://github.com/bemson/Flow/) > [ ... ] > I seek assistance with explaining my approach, writing use-cases, and > sharing my vision with the JavaScript community. I welcome all > comments, critiques, c

Re: [JSMentors] Flow - reviewing and sharing my new library

2011-04-26 Thread Stefan Weiss
On 26/04/11 05:08, bemson wrote: > My name is Bemi Faison. I'm the author of Flow, a framework for > defining and executing related functions. ( https://github.com/bemson/Flow/ > ) > > I'm of the notion that the concept is more valuable than my > implementation. To that end, I have completed the A

[JSMentors] Re: Flow - reviewing and sharing my new library

2011-04-26 Thread Scott Sauyet
I wrote: > Do you have some simple examples? Never mind. I missed the examples page Stefan pointed out. I'll look at it soon. -- Scott -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google

Re: [JSMentors] Beuatiful UI like ExtJs but in Jquery?

2011-04-26 Thread Ben Barber
On Sun, Apr 24, 2011 at 9:02 AM, John wrote: > Are there a good UI libraries?( not jquery UI) i need forms,controls > etc I'm just curious, what are your reasons for excluding jQuery UI? Ben Barber -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archi

Re: [JSMentors] Beuatiful UI like ExtJs but in Jquery?

2011-04-26 Thread Pau Ramon
*beautifulness*? :) -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive, visit here: http://www.mail-archive.com/jsmentors@googlegroups.com/ To unsubscribe from this group, send email

[JSMentors] Re: Flow - reviewing and sharing my new library

2011-04-26 Thread bemson
Hey Stefan, Yes, though it works in every browser today, depending on the order of object-properties was a conscious risk. Naturally, a future version could use a dual implementation that considered arrays of object- collections - the same way DOM nodes are structured (i.e., the childNodes array).

[JSMentors] Blog post on closures in JavaScript

2011-04-26 Thread Nick Morgan
Hi all I've written a new post on my blog, "Closures explained with JavaScript". http://skilldrick.co.uk/2011/04/closures-explained-with-javascript/ Mentioning it here for two reasons (a) to help the mentees understand this crucial (and often confusing) aspect of JS, and (b) to ask the mentors i

Re: [JSMentors] Beuatiful UI like ExtJs but in Jquery?

2011-04-26 Thread Rey Bango
You can theme jQuery UI, and most other libs, the way you like. The jQuery UI lib also provides the Themeroller app that helps you do it interactively: http://jqueryui.com/themeroller/ Rey... On Tue, Apr 26, 2011 at 10:47 AM, Pau Ramon wrote: > *beautifulness*? :) > > -- > To view archived dis

Re: [JSMentors] Blog post on closures in JavaScript

2011-04-26 Thread Peter van der Zee
On Tue, Apr 26, 2011 at 10:48 AM, Nick Morgan wrote: > Hi all > > I've written a new post on my blog, "Closures explained with JavaScript". > http://skilldrick.co.uk/2011/04/closures-explained-with-javascript/ > > Mentioning it here for two reasons > > (a) to help the mentees understand this cruc

Re: [JSMentors] Blog post on closures in JavaScript

2011-04-26 Thread Nick Morgan
Thanks! I'd just been watching some SICP videos when I came up with the idea for the post, so I had that kind of explanation on my mind (but I wanted to make it accessible). Nick On 26 April 2011 19:47, Peter van der Zee wrote: > On Tue, Apr 26, 2011 at 10:48 AM, Nick Morgan wrote: >> >> Hi all

[JSMentors] Re: RegExp recursive patterns?

2011-04-26 Thread Maximilian Antoni
Hey, the code is now here: https://github.com/mantoni/tpl.js - Max On 23 Apr., 22:21, Maximilian Antoni wrote: > I have written a micro framework as an experiment using string > replacement with regular expressions. The construct looks somewhat > like this: > > someTemplateString.replace(/fancy

Re: [JSMentors] Blog post on closures in JavaScript

2011-04-26 Thread Lasse Reichstein
On Tue, 26 Apr 2011 17:48:45 +0200, Nick Morgan wrote: Hi all I've written a new post on my blog, "Closures explained with JavaScript". http://skilldrick.co.uk/2011/04/closures-explained-with-javascript/ Mentioning it here for two reasons (a) to help the mentees understand this crucial (an

Re: [JSMentors] Blog post on closures in JavaScript

2011-04-26 Thread Poetro
2011/4/26 Lasse Reichstein : > In Javascript you can create functions with free variables that aren't defined > anywhere (yet), because the scope chain is mutable. In JavaScript there is thing called hoisting, so ever variable that is defined in the function will be defined at the begining of the

Re: [JSMentors] Blog post on closures in JavaScript

2011-04-26 Thread Lasse Reichstein
On Tue, 26 Apr 2011 21:31:16 +0200, Poetro wrote: 2011/4/26 Lasse Reichstein : In Javascript you can create functions with free variables that aren't defined anywhere (yet), because the scope chain is mutable. In JavaScript there is thing called hoisting, so ever variable that is defined i

[JSMentors] Method Resolution Order for JavaScript

2011-04-26 Thread mckoss
Evandro M. contacted me about my earlier post on MRO implementations for JavaScript. I think I've come up with a nice approach today that works with a minimum of excess baggage (i.e., uses native prototype- based inheritance in as much as possible). Example of diamond-shape multiple inheritance:

[JSMentors] Re: TDD with javascript

2011-04-26 Thread mckoss
QUnit is used by the jQuery project, I've had good luck with it and it's fairly simple to write tests. It can be made to run pretty easily in both the browser environment and under node.js. I find it invaluable to maintain a reasonably sized test suite for any non-trivial code I write (especially

[JSMentors] Re: Object name

2011-04-26 Thread mckoss
jQuery does this automatically if you use their JSONP ajax function. In the past, I've just pushed callbacks onto an array. The JSONP callback parameter can then be: ?callback=myCallbacks[123] this will generate: myCallbacks[123]({...JSONP result...}); On Apr 15, 1:22 am, Shreyas Subra