[jQuery] blockUI transparent borders

2009-08-15 Thread cambazz
Hello; how can I have transparent borders for modal divs that I bring to frond have transparent borders? specifying: border: 10 px transparent yellow; in the settings.css will not work. I tried few things, and I am beginning to think it is not doable. any ideas, recomendations, help greatly

[jQuery] Re: block on body onload, unblock on at the end of $(document).ready

2009-02-02 Thread cambazz
(){      //bla bla      ajaxCount();   });   $.ajax({ etc etc, success: function(){     //blablabla etc etc     ajaxCount();   });   ... and so on.. }); On Feb 1, 10:57 pm, cambazz camb...@gmail.com wrote: Hello, I would like to blockUI on body onload like: body onload=$.blockUI

[jQuery] block on body onload, unblock on at the end of $(document).ready

2009-02-01 Thread cambazz
Hello, I would like to blockUI on body onload like: body onload=$.blockUI({ message: null }); and when document ready finishes unblock, but unfortunately i can not unblock it if I put blockUI on onload of body. My page makes few ajax calls and some processing on document ready, and i want to

[jQuery] Re: file uploads and progress monitoring

2008-11-24 Thread cambazz
I am stubbornly refusing a flash based solution. I am sure there is a way. On Nov 24, 12:01 pm, netvibe [EMAIL PROTECTED] wrote: I've used swfupload. It's cross browser, multiple files, etc.. http://netvibe.nl/imagemanager/ On Nov 24, 4:21 am,cambazz[EMAIL PROTECTED] wrote: Hello, I

[jQuery] Jquery Forms plugin and fileupload

2008-11-21 Thread cambazz
Hello, I am using the file upload capacities of the form plugin successfully. However I could not find how to do two things. The first one, is how can one cancel an upload while upload is in progress. The second one is the progress indicator. I am using commons file upload, so I can calculate

[jQuery] form/validation plugin questions

2008-10-10 Thread cambazz
Hello, I am using form and validation plugins successfully. I was wondering: a) how can I make an error message show at a custom location? for example when validating an email, it will just add right next to the input element an error message as a generated label. how can I make error messages

[jQuery] jquery and comet long polling problem with IE

2008-07-11 Thread cambazz
hello, I wrote a comet servlet, and this is how I get the data into jquery: function pS() { $.ajax({ url:'tS', type: 'GET', timeout: 10, complete: function(xhr, status) { alert(status); if(status==='success') {

[jQuery] unblockUI and enter

2008-07-07 Thread cambazz
Hello, I am using blockUI to display a simple message with a button. I would like when user presses enter the dialog to go off. interesting thing is in FF, it does work as expected, and in IE it does not, it sometimes does, it sometimes does not, and I could not figure out why. any ideas?

[jQuery] Re: unblockUI and enter

2008-07-07 Thread cambazz
it will not work, even if the button has focus. On Jul 7, 3:14 pm, Mike Alsup [EMAIL PROTECTED] wrote: I am using blockUI to display a simple message with a button. I would like when user presses enter the dialog to go off. interesting thing is in FF, it does work as expected, and in IE it

[jQuery] Re: unblockUI and enter

2008-07-07 Thread cambazz
is not working? The button is not getting a click event, or the unblockUI call is not working? More details please (and a lgink if possible). On Jul 7, 6:45 pm, cambazz [EMAIL PROTECTED] wrote: it will not work, even if the button has focus. On Jul 7, 3:14 pm, Mike Alsup [EMAIL PROTECTED] wrote

[jQuery] blockUI fadeOut

2008-07-03 Thread cambazz
hello, is the blockUI fadeout function working? I was unable to get it to fadeOut fast. (0 fadeOut) Here is an excerpt: $.blockUI({ centerX: true, centerY: 0, message: $('#inRum'), css: { top: '200px', width:

[jQuery] comet long polling with jquery

2008-07-01 Thread cambazz
hello, I finally got my server to run an example comet application, which uses the long polling method. The example code I got uses prototype library, which i dont want to use. I understand there is a comet plugin for jquery that supports the bayeux protocol, which is not what I want.

[jQuery] comet long polling with jquery

2008-07-01 Thread cambazz
hello, I finally got my server to run an example comet application, which uses the long polling method. The example code I got uses prototype library, which i dont want to use. I understand there is a comet plugin for jquery that supports the bayeux protocol, which is not what I want.