[jQuery] Memory leak?

2007-08-31 Thread oscar esp
I have a strange behaviour (jQuery 1.1.3 /1.1.2). I have a screen with a lot of ajax call. That works fine in local test environment (same machine server-client) or when the net is quick. However I when I put it in our intranet there are a machine (win2000 ie6) that some times have memory

[jQuery] Re: Performance from 1.1.2 to 1.1.4

2007-08-29 Thread oscar esp
I will try Jeffry. I will keep you informed. On 28 ago, 19:07, Jeffrey Kretz [EMAIL PROTECTED] wrote: Wow. Well that's not too good. Is there any way you could upload a sample of this to a public location? This would really be needed for to track down what the issue is. JK

[jQuery] Re: Performance from 1.1.2 to 1.1.4

2007-08-28 Thread oscar esp
project. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of oscar esp Sent: Monday, August 27, 2007 9:35 AM To: jQuery (English) Subject: [jQuery] Re: Performance from 1.1.2 to 1.1.4 I am in debug mode (visual studio) in execution

[jQuery] Re: Performance from 1.1.2 to 1.1.4

2007-08-28 Thread oscar esp
; } }); - On 28 ago, 11:16, Renato Formato [EMAIL PROTECTED] wrote: oscar esp ha scritto: Hi Jeffry , I am agree about VS. When I execute without VS I get better performance obiuslly however 1.1.2/1.1.3 is faster thatn 1.1.4: -1.1.4 : 2 seconds (from select an item in client after

[jQuery] Problems to migrate from 1.1.2 to 1.1.4

2007-08-27 Thread oscar esp
I am trying to migrate my web app from jQuery 1.1.2 to 1.1.4. Just to begining I got some error when I load some pluguins. All errors are related with $... I used: script src=/InmoFusion2/libs_Ext/jquery/jquery.js/script script jQuery.noConflict(); /script And then : script

[jQuery] Performance from 1.1.2 to 1.1.4

2007-08-27 Thread oscar esp
I am doing some test in order to migrate from 1.1.2 to 1.1.4... and I got some strange result. I have two combo, when you chose an item in the first I load the related items in the second one using an ajax call. With 1.1.2 I spend 1 second to load the second combo... With 1.1.4 I spend 8

[jQuery] Performance from 1.1.2 to 1.1.4

2007-08-27 Thread oscar esp
I am doing some test in order to migrate from 1.1.2 to 1.1.4... and I got some strange result. I have two combo, when you chose an item in the first I load the related items in the second one using an ajax call. With 1.1.2 I spend 1 second to load the second combo... With 1.1.4 I spend 8

[jQuery] Re: Performance from 1.1.2 to 1.1.4

2007-08-27 Thread oscar esp
is faster than 1.1.4 On 27 ago, 18:09, John Resig [EMAIL PROTECTED] wrote: Slow server? There's on reason for a 7 second delay of any sort in jQuery. Do you have a demo of this online? --John On 8/27/07, oscar esp [EMAIL PROTECTED] wrote: I am doing some test in order

[jQuery] Re: Problems to migrate from 1.1.2 to 1.1.4

2007-08-27 Thread oscar esp
you call noConflict(). @oscar: If you want to keep using that plugin with noConflict(), you'll have to go in and rename all instances of $ to jQuery. --John On 8/27/07, Stephan Beal [EMAIL PROTECTED] wrote: On Aug 27, 12:43 pm, oscar esp [EMAIL PROTECTED] wrote: Just to begining I

[jQuery] Re: Performance from 1.1.2 to 1.1.4

2007-08-27 Thread oscar esp
I am executing into intranet... Could Ido any test that could help you? On 27 ago, 19:05, John Resig [EMAIL PROTECTED] wrote: Do you have a demo of this online? I haven't been able to reproduce this at all. --John On 8/27/07, oscar esp [EMAIL PROTECTED] wrote: I am in debug mode

[jQuery] Re: Ajax Setup Questions

2007-08-02 Thread oscar esp
: the function is ajaxError() and not error() -GTG On 8/1/07, oscar esp [EMAIL PROTECTED] wrote: I need to have a global behaviour for ajax call. I have next code: jQuery().ajaxSuccess(function(request, settings){updateCounter ();}); jQuery().error(function(request, settings){alert

[jQuery] blockUI question

2007-08-02 Thread oscar esp
I am using blockUI like modal window, it means that I load html page in the blockUI message. That works fine, however I have a problem now, because I need to block (when I am in the modal) to show confirm message... Are there any way to block twice?

[jQuery] Ajax Setup Questions

2007-08-01 Thread oscar esp
I need to have a global behaviour for ajax call. I have next code: jQuery().ajaxSuccess(function(request, settings){updateCounter ();}); jQuery().error(function(request, settings){alert('APLICATION ERROR\n '+settings.url);}); jQuery.ajaxTimeout(12); - Ajax Success works fine. - I don't

[jQuery] how do a post-action by default for every ajaxCall success

2007-07-27 Thread oscar esp
I need to control the expiration time session in order to warning the user. I am using settimeout method. In order to update the settimeout I need to call a method each time that Ajax call has success. I have a lot of Ajax calls... I would like execute by default the update timeout for every

[jQuery] Re: IE 7/6 frozen with massive use of jquery plugins

2007-07-23 Thread oscar esp
Thanks Oliver. I will try. On 21 jul, 14:52, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: I m no specialist of such issue but you could first check if its memory related. Just browse your website and see if the memory is continuously rising.(In the task-manager) oscar esp wrote: I

[jQuery] IE 7/6 frozen with massive use of jquery plugins

2007-07-21 Thread oscar esp
I have intermittent error, basically IE is frozen. I can not reproduce seems that I doesn't follow a pattern. I have developed an application with asp and I use a lot of jquery in order to do Ajax call to load scripts and pages. The structure of the application is: I have a main page with two

[jQuery] Session problems

2007-07-20 Thread Oscar esp
I have a App devoloped with asp jQuery. I have a strange behaviour with the session. Some times dissapear. I don't have a pattern to reproduce it... I would like if anyone has had problems with session using ajax calls... in order to determinate if it is a problem related with ajax calls or

[jQuery] Select radio button item

2007-07-12 Thread Oscar esp
I have a radio button group. I would like check an item when a user click on button. The radio group has 3 items. I know that I can get the radio button group using: jQuery(#idRadioButton).click() However I dont' know how select an item specifically (for exemple which has value='') thanks

[jQuery] Select radio button item

2007-07-12 Thread Oscar esp
I have a radio button group with 4 items, each one has a value (1,2,3,''). On click in a button of my form I would like the check the radio button with '' value. I supose that I can access to the radio group ussing $(@idRaio) but then I don't know how can access to the item with value='' Any

[jQuery] jQuery 1.1.3+ jBlock-Pluggin

2007-07-02 Thread oscar esp
Seems that block pluggin doens't work the same way with jQuery 1.1.3 With 1.1.2: - I had jBlock message with filter opacity in order to show a message with semi transparent background. With 1.1.3: - Same code doesn't maintain the opacity and now is 100% (0 transparency).

[jQuery] form onchange event

2007-06-22 Thread oscar esp
Hi, I have a form with submit button. When I load the form I load the var values in order to fill the form. Initiallly submit button is disabled... I would like: If use change any thing into the form I will like to enable the button. I dont' know If there is a event like form onchage='' I

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-22 Thread oscar esp
diff -u ¿? I don't know diff prg. :-( Thanks. On 21 jun, 18:41, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: do a diff -u between the 2 versions is there anything more than a slight change in param: ? On 6/21/07, oscar esp [EMAIL PROTECTED] wrote: I have some issues with jquery . When I use

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-21 Thread oscar esp
I have some issues with jquery . When I use the jquery from your branch I get some error in code that works fine with official 1.2 version. I have ajax calls that returns a html in order tu full a div. Seems that if data has html doesn't work Seems that type param doesn't work.

[jQuery] Re: superfish problems with ie6

2007-06-20 Thread oscar esp
Many thanks Joel I have copied the code that your wrote and now works perfectlly. Thanks again for your help. On 20 jun, 03:47, Joel Birch [EMAIL PROTECTED] wrote: On 20/06/2007, at 12:43 AM, Joel Birch wrote: Link: localhost/~joelbirch/plugins/superfish/oscar-test/ Sorry, the correct

[jQuery] Re: superfish problems with ie6

2007-06-19 Thread oscar esp
It is difficult to put it into public server rightnow. The problem is related with a bug in ie6. http://www.shepherdweb.com/2007/02/14/z-index-ignored-for-select-element-in-ie-6-workaround http://www.hedgerwow.com/360/bugs/css-select-free.html I don't know if we could apply some solution into

[jQuery] Re: superfish problems with ie6

2007-06-19 Thread oscar esp
Thanks Joel. I have test: a) bgIframe is loaded correctlly. The structure of my page is: html div here I put the menu /div div here I have a page that I have load with ajax and this page contains the select item. /div the superfish call: jQuery(#nuevomenu).superfish();

[jQuery] superfish problems with ie6

2007-06-18 Thread oscar esp
I have a menu superfish. I have added i6 patch, and works fine. However I have this design: menuOp1 menuOP2 ___ label: comboBox V When I click on menuOP1 the options are displayed (vertically), however the comobox appears over the

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-15 Thread oscar esp
PROTECTED] wrote: $.pair = function(f,v) {return escape(f) + = + escape(v)}; is the key, otherwise you would have the standard utf behaviour On 6/14/07, oscar esp [EMAIL PROTECTED] wrote: Hi I have been on holidays and I have not time to test it. In order to keep in mind: I need

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-15 Thread oscar esp
Ok fine! I like to be a beta tester. On 14 jun, 20:38, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: this patch is changes ajax, form uses ajax, so it should work! That's what I hope we will know after you test! On 6/14/07, oscar esp [EMAIL PROTECTED] wrote: Another questionbefore to test

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-14 Thread oscar esp
on the escape is brain dead , as it won't work with the full range of UTF... but the classic hi-ascii chars seem to work.. I tested with a ö (only) On 6/10/07, oscar esp [EMAIL PROTECTED] wrote: You are the man :-P In order to use it. then I only need add the js ¿? or I need

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-14 Thread oscar esp
a full version on the escape is brain dead , as it won't work with the full range of UTF... but the classic hi-ascii chars seem to work.. I tested with a ö (only) On 6/10/07, oscar esp [EMAIL PROTECTED] wrote: You are the man :-P In order to use it. then I only need

[jQuery] mouse icon clock when jblock.

2007-06-13 Thread oscar esp
I have popup message. In order to show it I use jBlock pluguin. The problem: The mouse Icon is the loading clock not the arrow only it is an arrow if the cursor is on a button. Are there any way to avoit it? Because seems that the message is not loaded completlly. PD: Sorry is the explanation

[jQuery] Re: block plugin

2007-06-11 Thread oscar esp
, 19:49, oscar esp [EMAIL PROTECTED] wrote: You are the best On 6 jun, 18:22, Mike Alsup [EMAIL PROTECTED] wrote: Oscar, blockUI only blocks the document on which it is loaded. If you have code executing in your iframe and you want that code to block the parent document you need

[jQuery] Re: block plugin

2007-06-11 Thread oscar esp
I will try to attach it, however the problem is the : fieldset id=cfgCartelLoadFieldSet legend class=normalbtest/legend I have delete this lines and then works fine... On 11 jun, 18:20, Mike Alsup [EMAIL PROTECTED] wrote: Do you have a sample page? On 6/11/07, oscar esp [EMAIL PROTECTED

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-11 Thread oscar esp
(only) On 6/10/07, oscar esp [EMAIL PROTECTED] wrote: You are the man :-P In order to use it. then I only need add the js ¿? or I need to call a extra code!!! On 10 jun, 18:44, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: Hey Oscar, You were the reason I wrote this patch

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-10 Thread oscar esp
Hi I have a problem realted with charsets as you know. Could I use this code in order to fix my problem? On 10 jun, 06:00, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: http://dev.jquery.com/ticket/1289 On 6/9/07, Brandon Aaron [EMAIL PROTECTED] wrote: Be sure to add this to trac. -- Brandon

[jQuery] Re: update input name

2007-06-07 Thread oscar esp
:-( Same result... if I inspect the name property using jquery(newdivetc) is updated howere the html is not updated On 6 jun, 15:19, Sam Collett [EMAIL PROTECTED] wrote: On Jun 6, 8:50 am,oscaresp[EMAIL PROTECTED] wrote: Thnaks... I have tryed:

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-06 Thread oscar esp
Thanks.. however my project it is in asp :-( On 6 jun, 04:32, Rhapidophyllum [EMAIL PROTECTED] wrote: Perl Python are great at converting character sets. On Jun 5, 2007, at 4:00 PM, oscar esp wrote: I am trying to find some code to do the conversion... however I did get any thing

[jQuery] Re: update input name

2007-06-06 Thread oscar esp
Thnaks... I have tryed: jQuery(#+inputID,addedItem).attr(id,newInputID); content1= jQuery(#+newInputID,addedItem)[0].outerHTML content1=content1.replace(inputID,newInputID) jQuery(#+newInputID,addedItem)[0].outerHTML = content1 But any result My use case: I have a div with inputs , I need

[jQuery] Re: block plugin

2007-06-06 Thread oscar esp
(); Mike On 6/5/07, oscar esp [EMAIL PROTECTED] wrote: I use the block pluggin in my App. I have a Page with this structure: div /div div id=iframe iframe /div if I execute the blockUI action in the iframe content only blocks the iframe window... I would like to block

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-06 Thread oscar esp
iso-8859-1 On 6 jun, 09:05, oscar esp [EMAIL PROTECTED] wrote: Thanks.. however my project it is in asp :-( On 6 jun, 04:32, Rhapidophyllum [EMAIL PROTECTED] wrote: Perl Python are great at converting character sets. On Jun 5, 2007, at 4:00 PM,oscarespwrote: I am trying to find

[jQuery] block plugin

2007-06-05 Thread oscar esp
I use the block pluggin in my App. I have a Page with this structure: div /div div id=iframe iframe /div if I execute the blockUI action in the iframe content only blocks the iframe window... I would like to block the main window in order to block all the screen? Any idea¿?

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-05 Thread oscar esp
I am trying to find some code to do the conversion... however I did get any thing right now On 4 jun, 21:37, Bil Corry [EMAIL PROTECTED] wrote: Mike Alsup wrote on 6/4/2007 8:15 AM: 2. Add support in the ASP page to convert UTF-8 into 8859. I don't know if this will help, but here's all

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-04 Thread oscar esp
Hi Mike, Then: There are not way to do a ajax call with charset iso8859¿? I can not add any header or something like that beforeSubmit in order to force iso8859 instead Of utf-8 ¿? My problem is I can not change the charset of asp pages which recives the ajax call. I feel a little bit

[jQuery] update input name

2007-06-04 Thread oscar esp
I have a code to clone a input. After that I need to change the id and name it... seems that change id works fine but not the name: jQuery(#+inputID,addedItem).attr(id,newInputID); - works ok jQuery(#+inputID,addedItem).attr(name,newInputID); - seems doesn't work Any idea?

[jQuery] Re: update input name

2007-06-04 Thread oscar esp
Sorry I did a mistake when I copied te code. I have the code like jQuery(#+inputID,addedItem).attr(id,newInputID); - works ok jQuery(#+newInputID,addedItem).attr(name,newInputID); - doens't work On 4 jun, 13:25, arnaud sellenet [EMAIL PROTECTED] wrote: If your code is exactly that (the

[jQuery] Re: jQuery core charset???????????(please help!!!!me!)

2007-06-03 Thread oscar esp
your choice of the other sets... but that limits you to a certain fraction of the world's languages. On 6/2/07, oscar esp [EMAIL PROTECTED] wrote: I am doing some test and I have problems with specials chars... are there any way to define charset into jQueryCore? My code to post

[jQuery] jQuery core charset???????????(please help!!!!me!)

2007-06-02 Thread oscar esp
I am doing some test and I have problems with specials chars... are there any way to define charset into jQueryCore? My code to post a form: main.asp . . script src=jquery.js/script script jQuery.noConflict(); /script script src=jquery.form.js/script body form id=test1 action=test2.asp

[jQuery] Print Preview

2007-05-31 Thread oscar esp
I would like to add a print preview funcionality to my web app. Any one knows a component to use it?

[jQuery] Re: Print Preview

2007-05-31 Thread oscar esp
. another question any way to print a div?

[jQuery] iframe question - frameReady plugin

2007-05-31 Thread oscar esp
Are there any way to pass a param (I need to pass a DIv object) from parent to the iframe child? My code: (iwould like to use newContent info) var newContent = jQuery(#containerDiv)[0].innerHTML jQuery.frameReady( function() {

[jQuery] form pluggin bug?

2007-05-25 Thread oscar esp
I am using fieldSerialize: jQuery('#DB .HSCO').fieldSerialize(); In form DB I have 3 items: input type='checkbox' class='HSCO' id='HSCO_1' name='HSCO_1' value=1 /td input type='checkbox' class='HSCO' id='HSCO_2' name='HSCO_2' value=1 /td input type='checkbox' class='HSCO' id='HSCO_3'

[jQuery] update check Box

2007-05-23 Thread oscar esp
I am trying to update a checkBox... using: jQuery(#HSFCO_1)[0].checked= true where input type='checkBox' class='HSFCO' id='HSFCO_1' checked='false However... the view is not update! Any suggestion?

[jQuery] consume click event

2007-05-19 Thread oscar esp
I need to change click event for each click I have nex code: function collapseSection(ID_SECCION) { jQuery(#HS_+ID_SECCION).bind(click,function() {expandSection(ID_SECCION);return false;}); } function expandSection(ID_SECCION) { jQuery(#HS_+ID_SECCION).bind(click,function()

[jQuery] tabs 2.7

2007-05-12 Thread oscar esp
1)I am using some plugins to build a page. 2)I am using jQuery.noConflict(); I have a a page that works fine using: validatorr, metada plugins. However when I use a tabs 2.7 plugin in order to load that page into a tab a error is produced Microsoft JScript runtime error: 'jQuery' is undefined

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-12 Thread oscar esp
I dont know if my problem has any relation (I am using form validate pluggin) - I have a form with a submit button. (Submit button call a asp page to save all fields) - I have next code: jQuery('#seccionesForm').submit(function() { var options = { beforeSubmit: preSubmitSeccion, //

[jQuery] frameReady some time crash?

2007-05-05 Thread oscar esp
I have next code: jQuery.blockUI(); jQuery(iframe id='applicationIframe' onload='' src='+url+' marginwidth='1' marginheight='1' height='100%' width='100%' scrolling='no' border='0' frameborder='0' / ).appendTo(#aplicacion); jQuery.frameReady(function(){ var

[jQuery] Re: CACHING FORM

2007-05-03 Thread oscar esp
I supose that I could do. On 2 mayo, 22:46, Jörn Zaefferer [EMAIL PROTECTED] wrote: oscar esp schrieb: I am using post with form pluggin. So how about switching to GET? -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: jQuery and EXT not working at all

2007-04-25 Thread oscar esp
(script language=javascript src=dimension.js/script) points to the dimensions-plugin and it loads correctly. I'm 90% sure this is your problem, either wrong filename, directory or missing file altogether. HTH -- Suni oscar esp wrote: I have followed all steps however I got an error

[jQuery] Re: jQuery and EXT not working at all

2007-04-24 Thread oscar esp
I have followed all steps however I got an error: Microsoft JScript runtime error: 'style' is null or not an object My code: html head link href=ext-1.0/resources/css/ext-all.css rel=stylesheet type=text/css / link href=ext-1.0/resources/css/ytheme-vista.css rel=stylesheet type=text/css /

[jQuery] Form plugin: Add new param in pre action.

2007-04-23 Thread oscar esp
I would like to add a new param in preactio function preSubmit(formData, jqForm, options) { ADD PARAM - METHOD= update return true; } How ever i don't know the best way to do it. Any recomendation?

[jQuery] Re: Form plugin: Add new param in pre action.

2007-04-23 Thread oscar esp
Thanks! On 23 abr, 12:06, Mike Alsup [EMAIL PROTECTED] wrote: Try this: formData.push({ name: METHOD, value: update }); I would like to add a new param in preactio function preSubmit(formData, jqForm, options) { ADD PARAM - METHOD= update return true; }- Ocultar

[jQuery] Re: ajax call to load iframe

2007-04-22 Thread oscar esp
try frameReady: http://ideamill.synaptrixgroup.com/?p=6 oscar esp wrote: I did some test in order to load div using ajax call: jQuery.ajax({ type: get, url: Purl+separator+new Date().getTime() , async: true, dataType: html, success: function(data) { jQuery(#+fTarget).get

[jQuery] Re: iFrame Content Update

2007-04-18 Thread oscar esp
I found the solution jQuery(#+divTarget).get() [0].contentWindow.self.document.body.innerHTML=data;

[jQuery] change CSS

2007-04-18 Thread oscar esp
Are any way to set the stylesheet like: link rel=stylesheet href=/Inmo/libs_Ext/jquery/css/intranet.css type=text/css media=screen in runtinme?

[jQuery] Question about BlockUI Plugin.

2007-04-17 Thread oscar esp
I am trying to use it, but the wainting message does't appear align into the center. Is it use a css? Where could get it? Thanks.

[jQuery] iFrame Content Update

2007-04-17 Thread oscar esp
I would like to update iFrame content with ajax call result like: jQuery.ajax({ type: get, url: url , async: true, dataType: html,

[jQuery] Re: Question about BlockUI Plugin.

2007-04-17 Thread oscar esp
Thanks!!! It works fine. Do you know if it is posible to use something like: link rel=stylesheet href=/InmoFusion2/libs_Ext/jquery/css/ thickboxCmp.css type=text/css media=screen instead of change the CSS using defaults? Thanks On 17 abr, 13:58, Mike Alsup [EMAIL PROTECTED] wrote: Oscar,

[jQuery] Some questions about tables and translator cmp

2007-04-04 Thread oscar esp
Hello, I have two questions: - Are there any table plugin which implement: sort pagination options? - I would like to add in my web site a component like: http://translate.parish.ath.cx/ Anyone know a open source component like this?... It will be nice to have a jQuery