Re: [jQuery] jQuery Methods, a new plugin?

2006-12-19 Thread Alan Gutierrez
. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com

Re: [jQuery] jQuery Methods, a new plugin?

2006-12-15 Thread Alan Gutierrez
* Jörn Zaefferer [EMAIL PROTECTED] [2006-11-22 03:17]: Alan Gutierrez schrieb: Extending prototype creates a lot of surprises. You're going to find yourself saying, yeah, that library isn't compatable with jQuery. I don't quite get your point. Do you use for-in loops on Strings

Re: [jQuery] Designing for reuse

2006-12-01 Thread Alan Gutierrez
://jquery.com/plugins/Authoring/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- Alan Gutierrez - 504

Re: [jQuery] Designing for reuse

2006-12-01 Thread Alan Gutierrez
().with().grid() .end(); // back to jQuery Does destructive mean that a filter changes the returned contents of the list returned by the initial jQuery? -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com/ Think New Orleans - http://thinknola.com

Re: [jQuery] Designing for reuse

2006-12-01 Thread Alan Gutierrez
() .rowHeight(22) .jQuery() .show() .css(width, 500px) Which is where you return control by naming the object that you wish to recover. -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com/ Think

Re: [jQuery] Designing for reuse

2006-12-01 Thread Alan Gutierrez
can create a simple grid renderer, but advertise what is rendered. Another programmer can whip up a smooth scroll into view, by attaching jQuery behaviors to the well-documented grid markup. -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com/ Think New

[jQuery] Designing for reuse

2006-11-30 Thread Alan Gutierrez
.) a controller object is returned. -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com/ Think New Orleans - http://thinknola.com/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Designing for reuse

2006-11-30 Thread Alan Gutierrez
* Jörn Zaefferer [EMAIL PROTECTED] [2006-11-30 16:12]: Alan Gutierrez schrieb: A controller object is returned.. var grid = null $(grid).grid({ data: data, onComplete: function(controller) { grid = controller } }) grid.srollToRow(6) I favor that approach, modified

Re: [jQuery] Designing for reuse

2006-11-30 Thread Alan Gutierrez
) -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com/ Think New Orleans - http://thinknola.com/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery Grid

2006-11-23 Thread Alan Gutierrez
* Alan Gutierrez [EMAIL PROTECTED] [2006-11-21 20:50]: * Alan Gutierrez [EMAIL PROTECTED] [2006-11-21 13:28]: I've created a simple jQuery grid... http://kiloblog.com/2006/11/19/a-grid-in-jquery/ Your thoughts are appreciated. Here are direct links to the grid, this latest version

Re: [jQuery] jQuery Grid

2006-11-21 Thread Alan Gutierrez
* Alan Gutierrez [EMAIL PROTECTED] [2006-11-21 13:28]: I've created a simple jQuery grid... http://kiloblog.com/2006/11/19/a-grid-in-jquery/ Your thoughts are appreciated. Here are direct links to the grid, this latest version includes a speed up in rendering. http://blogometer.com

Re: [jQuery] jQuery Methods, a new plugin?

2006-11-21 Thread Alan Gutierrez
to use that at the moment. -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com/ Think New Orleans - http://thinknola.com/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Animating text like a cash register

2006-11-21 Thread Alan Gutierrez
little price spinner. It's nice. -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com/ Think New Orleans - http://thinknola.com/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Grid and Storing State

2006-11-17 Thread Alan Gutierrez
function for a particular column in a grid, where do you store that information in a plugin? * Alan Gutierrez [EMAIL PROTECTED] [2006-11-15 12:37]: I'd like to create a Grid for my application. I've started here... http://blogometer.com/repository/etude/jQuery/grid/grid.html ...with the first

Re: [jQuery] jQuery 1.1 by the end of Nov

2006-11-17 Thread Alan Gutierrez
to be using other plugins which is really good. This will help users figure out what plugins and versions they might need and it will supply the info needed for some future package system to figure this out also. -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com

[jQuery] StyleSheets

2006-11-15 Thread Alan Gutierrez
I'm not finding any methods for editing stylesheets. I'd like to change a style as it is defined in the document. -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com/ Think New Orleans - http://thinknola.com

Re: [jQuery] StyleSheets

2006-11-15 Thread Alan Gutierrez
* Chris W. Parker [EMAIL PROTECTED] [2006-11-15 11:56]: On Wednesday, November 15, 2006 8:07 AM Alan Gutierrez said: I'm not finding any methods for editing stylesheets. I'd like to change a style as it is defined in the document. That's probably because there are none. You don't

Re: [jQuery] StyleSheets

2006-11-15 Thread Alan Gutierrez
* Klaus Hartl [EMAIL PROTECTED] [2006-11-15 12:15]: Chris W. Parker schrieb: On Wednesday, November 15, 2006 8:07 AM Alan Gutierrez said: I'm not finding any methods for editing stylesheets. I'd like to change a style as it is defined in the document. That's probably because

[jQuery] Grid and Storing State

2006-11-15 Thread Alan Gutierrez
).sortable(3, false) I'd only want sortable for those elements that were now grids. Thoughts? The Prototype way to do it is to create an object that acts as a controller. I'm not sure of the jQuery way. -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com

Re: [jQuery] JSON Serializer

2006-11-14 Thread Alan Gutierrez
it online in various places, by searching for either that or its license terms: The Software shall be used for Good, not Evil. -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com/ Think New Orleans - http://thinknola.com

[jQuery] Selecting a Single Node

2006-11-14 Thread Alan Gutierrez
Day three of jQuery. How do I select a single node? This is the best I can figure. $(#map).each(function() { map = new GMap2(this) }) -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com/ Think New Orleans - http://thinknola.com

Re: [jQuery] Selecting a Single Node

2006-11-14 Thread Alan Gutierrez
only getting something by ID) you can easily get the element that way. Very cool. Very clean. Thank you. I'll thank the group with my next question. I don't like to clutter a newsgroup with thank yous when I'm learning something. -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http

[jQuery] JSON Serializer

2006-11-13 Thread Alan Gutierrez
anyone suggest a JSON serialization library that doesn't extend the base objects? Otherwise, would anyone be interested in such a thing? -- Alan Gutierrez - 504 717 1428 - [EMAIL PROTECTED] - http://blogometer.com/ Think New Orleans - http://thinknola.com