[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 tryi

[jQuery] Re: Code Editors

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

[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-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] 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: mixing validate, and ajaxSubmit

2008-07-18 Thread Andiih
quired {min:2}" > (just include the metadata 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 ? > >

[jQuery] Re: mixing validate, and ajaxSubmit

2008-07-17 Thread Andiih
ocs.jquery.com/Plugins/Validation#List_of_built-in_Validation... > > 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

[jQuery] Re: mixing validate, and ajaxSubmit

2008-07-16 Thread Andiih
6, 2:13 pm, "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:

[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: jtemplates performance

2008-06-28 Thread Andiih
es give me. 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

[jQuery] Re: jtemplates performance

2008-06-27 Thread Andiih
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* the timing code I've added in my

[jQuery] Re: jtemplates performance

2008-06-27 Thread Andiih
te(ret); > var template_stop = new Date().getTime(); > alert(""+ >           "\n\tXml to Json: " + (xmltojson_stop - xmltojson_start) + >           "\n\tTemplate Processing: " + (template_stop - template_start) + > "\n***

[jQuery] Re: jtemplates performance

2008-06-26 Thread Andiih
ee if JavaScriptTemplates 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 

[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 performanc

[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: > > http://code.google.com/p/g

[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 c

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

2008-05-16 Thread Andiih
t; > > > The click callback gets the event object as the first parameter. Check the > > event.target property. That will be the DOMElement actually clicked on. In > > your case, simply make sure it's a TD (ignoring the click on the checkbox, > > as that one's handl

[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] 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, #facetpicker").fadeI

[jQuery] Re: Matching content

2008-04-03 Thread Andiih
== b; > }) > > > --Karl > _ > Karl Swedberg > 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 con

[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 ba