[jQuery] superfish scroll 1px in IE7

2009-03-09 Thread rekna
When I click on a superfish menu item, in IE7 the page sometimes scrolls 1px down... It happens also on the demo page of superfish. Eg. basic style demo, click on 3rd menu item in IE (make sure the browser initially is scrolled all the way to the top), then the page is scrolled 1px

[jQuery] (validate) submit using submithandler : how to post value of submit button

2009-07-09 Thread rekna
I'm using jquery validation to validate and submit all my forms. The submitHandler of jquery validation uses jquery form plugin to submit the form using $(form).ajaxSubmit() Without validation, you can use $(form).ajaxForm(...) to submit your form using ajax, and this will also send the value of

[jQuery] Re: (validate) submit using submithandler : how to post value of submit button

2009-07-09 Thread rekna
to the form with the name/value pair of the > submit button, before calling submitHanlder (and removing it > afterwards). So you can just use ajaxSubmit. > > Jörn > > On Thu, Jul 9, 2009 at 11:43 AM, rekna wrote: > > > I'm using jquery validation to validate and submit

[jQuery] [autocomplete] mustmatch problem

2009-07-17 Thread rekna
I'm using jquery autocomplete 1.0.2. The autocomplete retrieves data from the server and the option mustmatch is set to true. My data on the server has a code field and a description, and I'm returning +" "+| an example of data returned by the server would be: FIN Finance|2 PER Personel7 This wo

[jQuery] autocomplete mustmatch problem [autcomplete]

2009-07-18 Thread rekna
I'm using jquery autocomplete 1.0.2. The autocomplete retrieves data from the server and the option mustmatch is set to true. My data on the server has a code field and a description, and I'm returning +" "+| an example of data returned by the server would be: FIN Finance|2 PER Personel7 This wo

[jQuery] jqgrid default loaderror handler : is it possible?

2009-07-21 Thread rekna
Hi, I would like to specify a default loaderror handler for all my jqgrids... 1. is this possible with $.extend($.jgrid.defaults...)? 2. how can I get a reference to the grid in my default loaderror handler?

[jQuery] jquery form plugin ajaxSubmit / fieldvalue inconsistent behaviour [jquery form]

2009-07-31 Thread rekna
if you have in html the following: ajaxSubmit will submit : check : true check : false $("#check").fieldValue() will return [ true ] so, this is inconsistent with the result of ajaxSubmit, it should return [true,false]

[jQuery] Re: jquery form plugin ajaxSubmit / fieldvalue inconsistent behaviour [jquery form]

2009-08-03 Thread rekna
On Aug 3, 4:57 pm, Mike Alsup wrote: > > if you have in html the following: > > > > > > > > ajaxSubmit will submit : > > > check : true > > check : false > > > $("#check").fieldValue() will return > > [ true ] > thanks for the comment... i should probably use $ ('[name=check]').fieldValue() i