[jQuery] [Srollable HTML Table] Using this plugin, can someone recommend how to get it to also scroll horizontally?

2008-03-06 Thread rickcr
I'm using the jquery scrollable table plugin found here http://www.webtoolkit.info/scrollable-html-table-plugin-for-jquery.html http://www.webtoolkit.info/scrollable-html-table-plugin-for-jquery.html (if someone knows a better one to use, I'll try that as well. The above really isn't a jquery p

[jQuery] [validate] Possible bug - if name field looks like: questionAnswersMap(Q8).answers[0]

2008-02-13 Thread rickcr
My name fields in my form are backed by a String array in a HashMap and I need them in the following format: questionAnswersMap(Q8).answers[0] The problem is when I try to assign a validation rule to this name, I get an error in the javascript parsing: 'missing : after property id [Break on th

[jQuery] Re: Some sort of template for displaying validation errors in a div using validation framework?

2008-02-12 Thread rickcr
, I'd mention in this link in the general guidelines here http://docs.jquery.com/Plugins/Validation since there is some great stuff there in the options doc.) On Feb 12, 10:10 am, rickcr <[EMAIL PROTECTED]> wrote: > To possibly be more specific and to add one extra question: >

[jQuery] [validate] Re: Some sort of template for displaying validation errors in a div using validation framework?

2008-02-12 Thread rickcr
earlier on "isAdmin." I'd now like a way to say: someField: { required: true if isAdmin, minLength: 4 } On Feb 11, 8:16 pm, rickcr <[EMAIL PROTECTED]> wrote: > I'm using the very nice jquery validator for my forms, but I have, > what hopefully is a simple question. >

[jQuery] Some sort of template for displaying validation errors in a div using validation framework?

2008-02-12 Thread rickcr
I'm using the very nice jquery validator for my forms, but I have, what hopefully is a simple question. I like being able to defined all the error messages in the initial messages section in the jQuery setup: [CODE] messages: { firstName: "Please enter your firstname", userName: {

[jQuery] Re: newbiish.. must be a better way than what I'm doing to find the next div after the following inputs?

2008-01-31 Thread rickcr
On Jan 31, 4:57 pm, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > Hmm. It worked for me. I actually tested it. :) $(this).parent() selects the > tag. .nextAll() gets all the next elements (forward siblings), then the > 'div:first' filter finds the first one that's a div. Oh well, Glen's > sol

[jQuery] Re: newbiish.. must be a better way than what I'm doing to find the next div after the following inputs?

2008-01-31 Thread rickcr
ED]> wrote: > Another option is: > > $(this).parent().nextAll('div:first') > > - Richard > > On Jan 31, 2008 1:27 PM, Glen Lipka <[EMAIL PROTECTED]> wrote: > > > How about parents("div:first") > > > Glen > > > On Thu, Jan 3

[jQuery] newbiish.. must be a better way than what I'm doing to find the next div after the following inputs?

2008-01-31 Thread rickcr
This should be easy, but I'm stumped on this. I can't find examples showing cases where the find 'skips ahead' .. what I want to is find the next after any of the radio inputs is clicked so that if I have... Blue Green Red Stuff $(":[EMAIL PRO

[jQuery] Why does this jquery operation still bind to the submit button?

2008-01-08 Thread rickcr
I'm confused why the bind to the submit button still takes place with: jQuery(":[EMAIL PROTECTED] != 'submit']", document.preAssessmentForm ).change( function() { setConfirmUnload(true); } ); this selector works fine (the 'submit' isn't selected which I can tell by iterating over the selection a