[jQuery] Validation Plugin: additional-methods.js

2009-01-22 Thread Steve Blades
Thanks again to Jorn for a fantastic plugin. One thing I noticed, with the additional-methods.js file that is included with the download, is a small error with the messages for the maxWords, minWords, and rangeWords methods. They are missing $.format(): jQuery.validator.addMethod("maxWords", functi

[jQuery] Re: IE and Validate

2008-09-12 Thread Steve Blades
;username: 'You must enter a Username', >password: 'You must enter a Password' >}, >wrapper: 'li' >}); > > Thats all. > > Jörn > > On Thu, Sep 11, 2008 at 6:54 PM, Steve Blades &

[jQuery] IE and Validate

2008-09-11 Thread Steve Blades
Wondering if someone can help track an issue. I'm using validate 1.1 with JQuery 1.2.3 (can't upgrade at this time). I have a simple login form, and trying to validate that the fields aren't empty prior to submit. Working great in Firefox, but IE doing nothing, and not throwing an error: $('#login

[jQuery] Re: Ajax & JW Video Player. Fine in Firefox PC and Mac. IE6 Not working

2008-08-22 Thread Steve Blades
In my experience, JQuery and SWFObject never coexisted well in IE 6 (swfobject broke DOM). We use the JS that Adobe's generator push's, which keeps the DOM correct. On Fri, Aug 22, 2008 at 9:20 AM, Craigy <[EMAIL PROTECTED]> wrote: > > Hi - I have a development page here: > > http://www.aoec.com/

[jQuery] Re: Photo Crop proposal

2008-05-05 Thread Steve Blades
"Why would anyone pay for something that is based on open source?" In support of an open source initiative, especially if that initiative is addressing an immediate need that you might have. -- Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _

[jQuery] Re: Multiple forms, validation plugin

2008-04-21 Thread Steve Blades
Paul, Now, I might be wrong here, but if each form has it's own validation rules then wouldn't it be something like: $('#myFormsID').validate(); That id would equate to an 'id' attribute of the form element itself. That would be it, right? -- Steve "Cutter" Blades Adobe Certified Professional

[jQuery] Re: Somebody know a plugin like a Yahoo UI Datable?

2008-04-17 Thread Steve Blades
I may be wrong, but I believe that the YUI DataTable was originally the precursor to the Grid components in ExtJS. I have seen some very nice grids in JQuery, but none quite as nice (or complete) as those in ExtJS. On Thu, Apr 17, 2008 at 11:56 AM, Alexsandro_xpt <[EMAIL PROTECTED]> wrote: > > I'

[jQuery] Re: $.getJSON doesn't work on Vista PC while calling remote server

2008-03-07 Thread Steve Blades
And it wouldn't, as that would be a crosssite scripting instance, which isn't permitted. -- Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com --- The Past is a Memory The Futu

[jQuery] Re: Reverse IP Lookup

2008-01-18 Thread Steve Blades
StrikeIron.com has a free webservice search service (under products|utilities, you must register to access) that has a service listed which might meet your needs. -- Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ htt

[jQuery] Re: [SITE SUBMISSION] Brightegg.com

2008-01-02 Thread Steve Blades
Ryan, Great stuff. It's always good to see the American Dream at work. One small issue you may want to address, since you're selling design services, is your type/font choice of your home page. It renders miserably in Firefox 2 on WinXP (I'm at 1280 x 1024 res, if it matters). Very choppy and stil

[jQuery] Re: Using ajax

2007-12-26 Thread Steve Blades
You have the closing brackets and parens around the functions of your .ajax() call, but you don't appear to close out your $(document).ready(function(){ // everything is in here }); -- Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer ___

[jQuery] Re: .attr("type","hidden")

2007-10-29 Thread Steve Blades
Did you mean $('input[type='hidden'])? Your code is trying to set the type attribute. It looks like you want to select a field with a type of hidden -- Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blo

[jQuery] Re: Release: jQuery Validation plugin 1.1.1

2007-10-18 Thread Steve Blades
Jörn, Outstanding! Looks very good. Can't wait to see what you come up with next. -- Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com --- The Past is a Memory The Future a Dr

[jQuery] Re: Site Submission, finally!! :-)

2007-10-09 Thread Steve Blades
Steve, Very nice work, looks fantastic. And that's coming from a guy who works for a company that targets this (auto dealers) industry exclusively. Few minor notes: Your finance application is on an unsecure page. Major red flag to a savvy user, and huge liability to yourself (as the developer) an

[jQuery] Re: Validation madness

2007-10-09 Thread Steve Blades
(occurring prior to validation) separate from a 'beforeSubmit' (occurring after validation, and prior to the form submit). Just a thought. On 10/9/07, Steve Blades <[EMAIL PROTECTED]> wrote: > > > How about these? > > - beforeSubmit: called before the validation

[jQuery] Re: Validation madness

2007-10-09 Thread Steve Blades
> How about these? > - beforeSubmit: called before the validation starts > - success: called when the form is valid > - submitHandler: replaces the default submit, handler must do an > ajaxSubmit or whatever Sounds outstanding, as long as the submitHandler only covered an ajaxSubmit. If it was an

[jQuery] Re: Validation madness

2007-10-05 Thread Steve Blades
Ok, I've kind of hacked around it. Maybe adding prePost and onFailure options that can map to functions(form), so that you could run a script prior to the actual submit event, or something in the event of the form being invalid. I had a select with values that were a pipe delimited string. The sel

[jQuery] Re: Validation madness

2007-10-05 Thread Steve Blades
Jörn, That would be outstanding. My problem now is, I need this 'stuff' in the submit. By placing .validate() in the submit I'm able to do both, but. (see script first): $('#CSForm').submit(function(){ var selField = $('select#Make', this); rewriteMakeOption(selField);

[jQuery] Re: Validation madness

2007-10-04 Thread Steve Blades
That's funny, I was just plowing through a filtered list of the jquery list emails, trying to figure it all out. Thanks for the assist Josh, knew it should be something simple. -- Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer

[jQuery] Re: Validation madness

2007-10-04 Thread Steve Blades
- Josh > > > > > > - Original Message - > > *From:* Steve Blades <[EMAIL PROTECTED]> > *To:* jquery-en@googlegroups.com > *Sent:* Thursday, October 04, 2007 11:59 AM > *Subject:* [jQuery] Validation madness > > I'm using the validator plugin, and I

[jQuery] Validation madness

2007-10-04 Thread Steve Blades
I'm using the validator plugin, and I have some code like this: var errContainer = $('#CSForm div.error'); $('form#CSForm').validate({ errorContainer: errContainer, errorLabelContainer: $("ol",errContainer), rules: { First_Name: "required", L

[jQuery] Re: EXTjs and Jquery

2007-10-04 Thread Steve Blades
I find that they play very well together. I use the jquery adapter built to bridge jquery and ExtJs, but it isn't a necessity, ExtJS has it's own DOM selector methods. I just find the JQuery syntax very easy, and it's handling of DOM manipulation very robust. I use ExtJS primarily for it's beautifu

[jQuery] Re: uhhh.......WAT?

2007-09-28 Thread Steve Blades
Robert, This forum is for all people, at all levels of skill, and is intended for learning and sharing. Yes, the tone and title of the original message were off (a sign of frustration, I'm sure), but that doesn't mean that any of us should pay less attention, or offer less aid, than we would to an

[jQuery] Re: ANNOUNCEMENT: Chili 1.9 much faster

2007-09-27 Thread Steve Blades
Looks outstanding. Now, if it only had a syntax highlight library for ColdFusion;). On 9/27/07, Andrea Ercolino <[EMAIL PROTECTED]> wrote: > > > > Very simple. Look at the new example posted in > http://noteslog.com/post/chili-19-released-today/ : It's what you're > looking > for. > > But Chil

[jQuery] Re: ..selector bug..

2007-07-31 Thread Steve Blades
That's odd? According to the w3c: 'XHTML documents must use lower case for all HTML element and attribute names. This difference is necessary because XML is case-sensitive e.g. and are different tags.' ref: http://www.w3.org/TR/xhtml1/#h-4.2 Steve "Cutter" Blades Adobe Certified Professional A

[jQuery] AutoScaling Image

2007-07-05 Thread Steve Blades
OK, maybe someone can help me wrap my head around a good way of doing this. Here's the setup (question to follow). I have a container div that contains a) an image [float:left] b) a table, and c) a div below the image and table. I use JQuery to hide the lower div on page load. I have a hover() ev

[jQuery] Call For Input: Document Revision Comments

2007-06-22 Thread Steve Blades
Looking for everyone's input on an issue. Trying to see how the community-at-large deals with this situation. See details, and please comment, over on my blog: http://blog.cutterscrossing.com/index.cfm/2007/6/22/Call-For-Input-Document-Revision-Comments -- Steve "Cutter" Blades Adobe Certified

[jQuery] Re: jQuery Ajax pagination

2007-06-18 Thread Steve Blades
t; wrote: Thanks Steve. Looks very interesting. Do you can share the SQL tblUsers script? ID is an identity field in that table? Do you found any bottlenecks for that SQL paginations approach? Please look this article for pagination in SQL Server: http://www.4guysfromrolla.com/webtech/042606-1.shtml Thank

[jQuery] Re: jQuery Ajax pagination

2007-06-17 Thread Steve Blades
I have a (currently) six part tutorial on paging the ExtJS DataGrid component, with JQuery, on my blog: http://blog.cutterscrossing.com/index.cfm/My-First-ExtJS-DataGrid Steve 'Cutter' Blades Adobe Certified Expert Advanced Macromedia ColdFusion MX 7 Developer http://blog.cutterscro

[jQuery] Re: Cannot set height or width of div

2007-04-26 Thread Steve Blades
.width() and .height() are used to get the w and h values. You would use $([selector]).css("[attr]":"[value]") to set a style value. Steve 'Cutter' Blades Adobe Certified Expert Advanced Macromedia ColdFusion MX 7 Developer http://blog.cutterscrossing.com "The best way to predict th

[jQuery] Re: I'm going nutz...

2007-04-06 Thread Steve Blades
I thought it was $('#mytest').css({width:"200px"}); to set a style attribute? -- Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com --- The Past is a Memory The Future a Dre