[jQuery] Dynamically generate file with jquery

2009-03-11 Thread Andiih
I'm trying to see if it is possible to convert a table on a page to a csv and offer it to the user for download. Obviously I could grab the data and post it to the server for some aspx or php to revert it with the correct content type (or even do it all server side in the 1st place) but I am

[jQuery] Re: Code Editors

2008-09-13 Thread Andiih
Downloading Aptana studio now. That's exactly what I am after I think! Cheers everyone!

[jQuery] Re: Code Editors

2008-09-13 Thread Andiih
Just installed Aptana and after 60 seconds of testing - that *exactly* what I wanted.

[jQuery] Code Editors

2008-09-11 Thread Andiih
I've searched here and found a few old discussions, but what are the current recommendations for a good code editor, preferably with a jQuery intellisense type plugin ? (Yep I've been a microsoft boy for too long!)

[jQuery] Re: Code Editors

2008-09-11 Thread Andiih
I always feel VS in all its incarnations is a bit clunky, and a bit heavy. Its a necessary evil for dot net development, but I'd prefer to avoid it where possible. I know many love it, but its just not 'me'. I'm building a clean development machine and I don't yet need to install VS, so I wont.

[jQuery] Re: mixing validate, and ajaxSubmit

2008-07-18 Thread Andiih
plugin, part of the distribution). Jörn On Thu, Jul 17, 2008 at 1:32 PM, Andiih [EMAIL PROTECTED] wrote: Thanks Jörn But which of those methods is mapped to a class, and how ? The example at the top of the page uses class=required email. Could I use a class of min(12) for instance

[jQuery] Re: mixing validate, and ajaxSubmit

2008-07-17 Thread Andiih
... Jörn On Wed, Jul 16, 2008 at 6:47 PM, Andiih [EMAIL PROTECTED] wrote: Fantastic - I'd guessed my way into getting it working (using submitHandler with no arguments) but hadn't realized that submitHandler can pass the form.  I can make the handler much more generic.  Thanks

[jQuery] mixing validate, and ajaxSubmit

2008-07-16 Thread Andiih
The behaviour I have is that the form is correctly validated, but submits $('#editjobsform').submit(function() {dosavejob(); return false; }); //other stuff here $('#editjobsform').validate( { rules: {blah:blah },

[jQuery] Re: mixing validate, and ajaxSubmit

2008-07-16 Thread Andiih
, Jörn Zaefferer [EMAIL PROTECTED] wrote: Put the ajaxSubmit stuff into the submitHandler-callback, here is an example:http://jquery.bassistance.de/validate/demo/ajaxSubmit-intergration-de... Jörn On Wed, Jul 16, 2008 at 11:29 AM, Andiih [EMAIL PROTECTED] wrote: The behaviour I have

[jQuery] Re: jtemplates performance

2008-06-28 Thread Andiih
. Of course I could load the text areas up dynamically earlier on in the process Until monday then, and thanks for all the help so far: I will let you know what I find. On Jun 27, 1:11 pm, chris thatcher [EMAIL PROTECTED] wrote: Hi Andiih, I had one more thought.  I don't usually setTemplateURL abd

[jQuery] Re: jtemplates performance

2008-06-27 Thread Andiih
(+           \n\tXml to Json: + (xmltojson_stop - xmltojson_start) +           \n\tTemplate Processing: + (template_stop - template_start) + \n); On Thu, Jun 26, 2008 at 4:36 PM, Andiih [EMAIL PROTECTED] wrote: Jack, I'll take a look Chris, I *think

[jQuery] Re: jtemplates performance

2008-06-27 Thread Andiih
, Andiih [EMAIL PROTECTED] wrote: Jack, I'll take a look Chris, I *think* the timing code I've added in my sample above is only timing the template step ? I've had the opportunity to try this out this afternoon on a number of machines in the organization, and noted a couple of things... Its

[jQuery] jtemplates performance

2008-06-26 Thread Andiih
I am using jTemplates (jquery-jtemplates.js) to render a large xml response by running xmlToJSON then processTemplate. Although the code works fine, and performance in FF2.0 is acceptable (2672ms) on my test system, I am getting a result of 9827ms when running in IE7. Is there a known

[jQuery] Re: jtemplates performance

2008-06-26 Thread Andiih
looks like I can integrate it, and re- test. TIA Andrew On Jun 26, 6:02 pm, chris thatcher [EMAIL PROTECTED] wrote: Andiih, just curious becuase I use jtemplates and havent seen that issue, though can you verify that the slow code is not 'xmlToJSON'. I have seen the marshalling process take

[jQuery] Re: jsonp in GAE for jQuery xss

2008-05-21 Thread Andiih
Thx. Looks like the myhangouts example is going to get me moving... On May 20, 6:53 pm, Michael Geary [EMAIL PROTECTED] wrote: HiAndiih, I know the feeling! Don't worry, you will get it all sorted out. Take a look at the Google App Engine samples project:

[jQuery] jsonp in GAE for jQuery xss

2008-05-20 Thread Andiih
Alphabet soup! I think I'm trying to learn too many new things at once... Anyone got examples for Google App Engine deliving basic web service type API's ? A hello world type example would do nicely - I would like to serialize objects and return them with jsonp so I can fetch them from jQuery

[jQuery] Re: Expanding the clickable region of a checkbox

2008-05-16 Thread Andiih
clicked on. In your case, simply make sure it's a TD (ignoring the click on the checkbox, as that one's handled by the browser default). - Richard On Thu, May 15, 2008 at 10:36 AM,Andiih[EMAIL PROTECTED] wrote: Hi I have some checkboxes in table cells.  I would like a click

[jQuery] Expanding the clickable region of a checkbox

2008-05-15 Thread Andiih
Hi I have some checkboxes in table cells. I would like a click anywhere in the td to trigger the toggle of the checkbox. I thought something like this would do it (obviously with more specific selectors for the real world) $(td).click(function(){ $(this).children(input).each(function(){

[jQuery] Re: get next item of sibling relationship unknown (was: first child of type form control)

2008-04-05 Thread Andiih
Caveat- I'm a newbie, and I'm just guessing...but I thought I would try to answer some questions rather than just asking them... Does it fail when there is more than one ? Try an .eq(0) i.e. $('.scrollTo').eq(0).findNext(:input).focus(); On Apr 4, 9:50 am, dug [EMAIL PROTECTED] wrote:

[jQuery] Re: Matching content

2008-04-03 Thread Andiih
www.englishrules.com www.learningjquery.com On Apr 1, 2008, at 6:23 AM, Andiih wrote: Newbie question. I'm trying to right a selector that matches content in a definition list. At the moment I have $(dt:contains(' + a + ')).next(dd:contains(' + b + ')) which kind of works, but I really want

[jQuery] When do animations happen

2008-04-03 Thread Andiih
I am trying to run the following code $(#facetpicker select).livequery('change',function() { $(#solutions, #facetpicker).fadeOut(slow); alert('go'); $.facetSelected(this.name,this.value,0,-1); $(#solutions,

[jQuery] Matching content

2008-04-01 Thread Andiih
Newbie question. I'm trying to right a selector that matches content in a definition list. At the moment I have $(dt:contains(' + a + ')).next(dd:contains(' + b + ')) which kind of works, but I really want equals rather than contains. Somehow I have managed to right 80% of a feature based