[jQuery] Re: problem when using inside a popup

2009-09-21 Thread Arun
How did you manage to get it in dialog. Im using Jquery UI 1.7.2 dialog for me the auto suggest layer displays behind the modal dialog overlay. Please let me know how to acheive it? On Sep 8, 1:11 pm, Kevin wrote: > Hello, > > When I usejquery.autocomplete.js on a field that lives inside > ajqu

[jQuery] (autocomplete) Issue with Plugin JQuery Dialog 1.7.2

2009-09-21 Thread Arun
Hi, We are using autocomplete plugin with Jquery 1.3 and Jquery UI 1.7.2. When the plugin is used with Jquery UI Modal dialog we are getting auto suggest layer behind the modal layer. We feel itz due to z-index of dialog. Please let us know if there any way fix this issue.

[jQuery] how convert low jquery version function to new version?

2009-08-10 Thread arun kumar
hi, this is jquery table editor plugin, http://dev.iceburg.net/jquery/tableEditor/demo.php it is work in this version /* * jQuery 1.0.3 - New Wave Javascript * * Copyright (c) 2006 John Resig (jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses.

[jQuery] Using Zend IDE with jquery

2009-06-12 Thread Arun
Hi, Has anyone ever tried using the zend ide with jquery? Any comments on this would be appreciated. Arun

[jQuery] jqGrid - display a xml node attribute value in a cell

2009-03-11 Thread Arun Boppudi
I need to display a xml node attribute value in a cell. How can I do it using the xmlmap? I have XML like: 2 3 4 .. In the table's first cells I need to display Arun Boppudi, 2, 3, 4 values respectively.

[jQuery] Re: Problems with Content-Type header set to text/xml

2008-08-23 Thread Arun Kumar
No solutions??? On Aug 17, 2:42 pm, Arun Kumar <[EMAIL PROTECTED]> wrote: > A small correction, > > If I set that header, it is not working in FF. If I remove that > header, it is not working in IE 7. > > Than I added another parameter to my ajax request, dataType: "

[jQuery] Re: XML Parsing: Getting a node value

2008-08-23 Thread Arun Kumar
No solutions? On Aug 17, 2:12 pm, Arun Kumar <[EMAIL PROTECTED]> wrote: > Have a look at the sample code given below: > > http://www.w3.org/ > TR/html4/strict.dtd"> > >         >                 >                 XML Parsing >         >

[jQuery] $("#id").focus

2008-07-21 Thread Arun Kumar
I am creating an anchor tag using JS DOM. Focus event handler is binded to it using $("#id").focus(function(){ displayDetails(this.id); }); I am focussing it using $("#id").focus(), then the displayDetails() is called for twice.

[jQuery] Finding the element which has focus

2008-07-20 Thread Arun Kumar
I am using jQuery table key navigation plugin and I have three key navigateable tables. And focus can be moved across tables. How can I know the table name which has focus?

[jQuery] Re: XML Parsing: Getting a node value

2008-07-12 Thread Arun Kumar
se. > > $("A", xmlDoc).find("os\\:TestTag").text(); > > -- > Ariel Fleslerhttp://flesler.blogspot.com/ > > On 12 jul, 09:12, Arun Kumar <[EMAIL PROTECTED]> wrote: > > > > > I have the following XML File: > > > > >  

[jQuery] XML Parsing: Getting a node value

2008-07-12 Thread Arun Kumar
I have the following XML File: 10 JSHDHSKJAD I want to get the tag os:TestTag value. I am using the following query (This XML is in xmlDoc variable). $("A", xmlDoc).find("os:TestTag").text(); The above query is not working, So I tried the below one: $("A", xmlDoc).find("TestTag").tex

[jQuery] Finding whether a tag is present in between two specified tags or not

2008-07-08 Thread Arun Kumar
Suppose I have two tags and as below: 2008-07-07 TestTag Text Node 20:15:45 How can I find whether TestTag is present in between the and tags or not? The may present any where in the document. But I want to know whether it is present between and tags or not? TestTag is

[jQuery] Re: Sorting a JSON object based on it's keys

2008-06-27 Thread Arun Kumar
is something you can sort. You can use JavaScript's sort() method of > the Array object with a callback function that compares two elements as you > wish. > > If you have a large number of elements in the array, a sort callback can > slow down sorting. Let me know if this is t

[jQuery] Sorting a JSON object based on it's keys

2008-06-26 Thread Arun Kumar
The output should be as below: var jsonObj = { 2 : { "Name" : "Sai", "Position" : "Sr" }, 1 : { "Name" : "Bhushan", "Position" : "Sr" }, 3 : { "Name" : "Arun", "Position" : "Jr" } };

[jQuery] Elements not having a class

2008-06-12 Thread Arun Kumar
How can I get DIV elements not having a class ("test-class") inside a main DIV#Main? I am trying var count = 0; $("#Main > div").each(function(){ if(!($(this).hasClass(".test-class"))) { count += 1; } }); alert(count); But this is not the correct way I think. How can I do it?

[jQuery] How to disable use of proxy in jQuery UI sortables

2008-06-10 Thread Arun Kumar
How to disable use of proxy in jQuery UI sortables functionality? I am sorting three DIV elements that contains iFrames inside it. While Dragging is started, for some time I am not able to view content inside that iFrame which is being dragged as it is a proxy element for the original one. So, Is

[jQuery] jQuery Sortables

2008-06-09 Thread Arun Kumar
Visit http://tech-test.tutorialsforu.com/jQueryDnD.html, There is some problem in using jQuery sortables. You can find screen shot is at:http://tech-test.tutorialsforu.com/jQueryDnD.PNG Got this problem while dragging the div item.

[jQuery] Problem when posting messages...

2008-06-09 Thread Arun Kumar
I don't know why it is taking more time to get my posted message on jQuery-en group messages list...?

[jQuery] [autocomplete] JSON response

2008-06-05 Thread Arun Kumar
I am getting JSON response(string format) from the URL to which I am sending request. I want to use the methods formatResult to format the result. $("#month").autocomplete("Search.php", { minChars: 0, max: 12, autoFill: true, mustMatch: true, matchContains: false, sc

[jQuery] Re: Drag and Drop of Gadgets

2008-06-05 Thread Arun Kumar
Already asked... But got no useful response. On Jun 4, 6:42 am, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > Please ask on the jQuery UI list: > > http://groups.google.com/group/jquery-ui > > - Richard > > On Tue, Jun 3, 2008 at 3:54 AM, A

[jQuery] Re: UI sortables problem

2008-06-05 Thread Arun Kumar
That is why I have posted a question here... On Jun 3, 9:19 pm, Sid <[EMAIL PROTECTED]> wrote: > Nope, nothing happening on dragging anything > > On Jun 3, 5:35 pm, Arun Kumar <[EMAIL PROTECTED]> wrote: > > > > > Not that, > > > Drag that gadget

[jQuery] Re: UI sortables problem

2008-06-03 Thread Arun Kumar
container, the default "error" page > opened. > > On Jun 3, 12:53 pm, Arun Kumar <[EMAIL PROTECTED]> > wrote: > > > > > Please visit the URL below and let me know if there is any problem in > > using the jQuery UI sortables. > > >http://tech-test.tutorialsforu.com/- Hide quoted text - > > - Show quoted text -

[jQuery] Drag and Drop of Gadgets

2008-06-03 Thread Arun Kumar
Can I use sortables for div's that contains iFrames (Shindig gadgets)? that doesn't need refresh of iFrame? Inside that iFrame, I have placed a alert, and each time I drag it, I will get two alerts. Is there any way of not using a proxy element?

[jQuery] UI sortables problem

2008-06-03 Thread Arun Kumar
Please visit the URL below and let me know if there is any problem in using the jQuery UI sortables. http://tech-test.tutorialsforu.com/

[jQuery] Re: load() function in synchronous manner.

2008-06-03 Thread Arun Kumar
It is not working for me in the case of load() function. I have to try it once again. On May 29, 3:54 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > $.load() using $.ajax() at it's core so yes. > > It's a really good idea to check the documentation and the source code > when you have questions like

[jQuery] Re: load() function in synchronous manner.

2008-05-29 Thread Arun Kumar
> > http://docs.jquery.com/Ajax/jQuery.ajax#options > > The $.ajaxSetup() call applies to all AJAX based calls after that, > until they're changed. > > Karl Rudd > > On Wed, May 28, 2008 at 12:31 AM, Arun Kumar > > <[EMAIL PROTECTED]> wrote: > > > Not th

[jQuery] load() problem in IE7

2008-05-23 Thread Arun Kumar
I have a html page with two alerts and it's source is given below: