[jQuery] Re: Call for contributors: A simple, fast and flexible grid/spreadsheet component.

2009-03-19 Thread Sridhar
for this. By the way, I am trying to use this in asp.net 2.0 Thanks, sridhar. On Mar 18, 5:25 pm, Tin michael.leib...@gmail.com wrote: Updated the last example (http://slickgrid.googlecode.com/svn/trunk/ example4-model.html) with column sorting (click on column headers). Some grid code refactoring plus

[jQuery] Flash Inside a Tab | Why its reloading everytime?

2009-03-17 Thread Sridhar Kuppalli
replicated the problem here http://kuppalli.com/YUI/test.html Thanks Regards Sridhar Kuppalli

[jQuery] Flash within a Tab | Always reloads when you revisit the tab

2009-03-17 Thread Sridhar Kuppalli
Regards Sridhar K N

[jQuery] Flash within a Tab | Always reloads when you revisit the tab

2009-03-17 Thread Sridhar Gowda
Hi All, I have jquery tabs, where I have a flash movie under tab1. User will play the movie for a while, pause the movie. Moves from tab1 = tab2 and come back to tab1. The flash movie will begin from the beginning. why is it so? Is there any solution for this? Thanks Regards Sridhar K N

[jQuery] improving performance of table navigation

2009-01-12 Thread Sridhar
Hi, I am trying to write table navigation using keys for asp.net gridview. This is what I have so far. It is working fine but it is slow. Please look at it and let me know how to improve the performance if possible. Basically it is html table with input elements. The structure of table is like

[jQuery] Re: hover event going to infinite loop

2008-12-12 Thread Sridhar
the hover event will be activated. http://cherne.net/brian/resources/jquery.hoverIntent.html http://plugins.jquery.com/project/hoverIntent On Thu, Dec 11, 2008 at 1:21 PM, Sridhar dsridha...@gmail.com wrote: Hi brian,           I cannot set the width on the div tag unless the image

[jQuery] Re: hover event going to infinite loop

2008-12-11 Thread Sridhar
that didn't work. On Dec 11, 1:00 am, sad1sm0 [EMAIL PROTECTED] wrote: try unbinding before attaching the hover event $('#divEmpDetails').unbind().hover();//fill in the gaps Now that I look at your post I realize that's what fixed my gallery issue.  Looks like a similar problem.  Maybe

[jQuery] Re: hover event going to infinite loop

2008-12-11 Thread Sridhar
the main div (#EmpDetails) tag, then as soon as the mouse leaves the image, the content will be hidden. Is there any other way to accomplish this? Thanks, sridhar. On Dec 11, 12:00 pm, brian [EMAIL PROTECTED] wrote: It's not an infinite loop. Your cursor is passing over the div and back several times

[jQuery] hover event going to infinite loop

2008-12-10 Thread Sridhar
Hi, I am trying to use hover event in jquery to accomplish the following. I have a image button. when the user hovers over the image, it should display a div with the details. when the user moves the mouse off of the image and the content, the content should go away. Also, if the user clicks

[jQuery] Re: Possible name space issue?

2008-12-10 Thread Sridhar
since you are using jQuery(selector) instead of $(selector), it shouldn't be naming collision. How do you know jQuery lines are executed? if you are thinking that since it is not giving any errors it is executing it is not correct. if jquery cannot find the element, it won't give any error. you

[jQuery] Re: Need Help with my plugin

2008-12-10 Thread Sridhar
I am not seeing where you are setting the galleryObj.currentSrc when the user clicks on next / prev. may be that is the problem. On Dec 10, 4:04 pm, sad1sm0 [EMAIL PROTECTED] wrote: I'm building my first plugin for jquery and I'm stuck on a really weird problem.  I'm building a lightbox image

[jQuery] Re: Targetting .class-0 .class-1 .class-2 .class-3

2008-12-03 Thread Sridhar
I wonder why you would have a separate css class for each div. you could do it using the solution given by JK or you could set the id of each div tag that starts like 'jCalendar' and reference the elements using the regular expression $('div[id^=jCalendar]') sridhar. On Dec 3, 9:00 pm, Jeffrey

[jQuery] Re: siblings() not working properly in IE7

2008-12-03 Thread Sridhar
can you just post the sample html code and the jquery code you are using? you can just copy the rendered html and the jquery you are using and post here. On Dec 3, 6:47 pm, Marc [EMAIL PROTECTED] wrote: Has anyone ever seen the behavior where $('#someId').siblings() returns an empty set in IE7

[jQuery] Re: Replacing Checkboxes with label + yes/no radiobuttons?

2008-12-03 Thread Sridhar
not sure if there is a plug-in but you can easily achieve this as follows script type=text/javascript language=javascript jQuery(function($) { $('input:checkbox').each(function() { var chk = $(this); var chkName = chk.attr(name);

[jQuery] how to check if a form has changed

2008-12-02 Thread Sridhar
the value with the stored value in a hidden variable? If there is a standard way to do this, please let me know. we are using asp.net to create the forms Thanks, sridhar.

[jQuery] find table rows that contains text

2008-11-25 Thread Sridhar
/table -- script var rows = $('table tr:contains(' + ' + '63' + ' + ')'); as you can see, both the rows contain text 63. But I want to get the reference to second row since that contains the exact match. How would I do that? Thanks, sridhar.

[jQuery] Re: find table rows that contains text

2008-11-25 Thread Sridhar
()) == mySearch) return true; else return false; }); var tr = $(a).parents('tr:eq(0)'); Thanks, sridhar. On Nov 25, 11:05 am, Pierre Bellan [EMAIL PROTECTED] wrote: Hi, I think you must use

[jQuery] Re: How to gzip a javascript file | I am not able to find.

2008-10-20 Thread Sridhar Kuppalli
')); ob_end_flush(); ? Then i am including uitabs.php in my index.php file. Now gzip is happening. Can we do it automatically this one? Thanks Regards Sridhar K N On Mon, Oct 20, 2008 at 6:55 PM, leveille [EMAIL PROTECTED] wrote: Are you certain that you have enabled/loaded the deflate

[jQuery] Re: How to gzip a javascript file | I am not able to find.

2008-10-19 Thread Sridhar Kuppalli
In those sites they have mentioned to set some variables in apache. How do that. can my cpanel have that option? On Sun, Oct 19, 2008 at 2:17 AM, Sam Sherlock [EMAIL PROTECTED]wrote: search for mod_deflate on google I use jsMin and cssTidy, others prefer other options 2008/10/18 Sridhar

[jQuery] Re: How to gzip a javascript file | I am not able to find.

2008-10-19 Thread Sridhar Kuppalli
Thanks man, Its really a good one, my request time for jquery library has been reduced by 50%. In the similar way I have to do for other js files also. Is there any way to achive gziping? I cannot configure apache. Regards Sridhar K N On Sun, Oct 19, 2008 at 3:34 PM, poncz [EMAIL PROTECTED

[jQuery] How to gzip a javascript file | I am not able to find.

2008-10-18 Thread Sridhar Kuppalli
it on Windows Os? Is there any link which says = do these steps to gzip your js files. -- Thanks Regards Sridhar K N [EMAIL PROTECTED]

[jQuery] Pack or Min | Which is better for faster loading?

2008-10-14 Thread Sridhar Kuppalli
compared to the same file inclusion in my production site.(http://mysite.com/js/ jquery-1.2.6.min.js) What is the reason for this? Thanks Regards Sridhar K N [EMAIL PROTECTED]

[jQuery] Display a loading message till all the images are loaded.

2008-10-12 Thread Sridhar Kuppalli
anybody help me out with this? *Thanks Regards* Sridhar K N [EMAIL PROTECTED]

[jQuery] Re: Display a loading message till all the images are loaded.

2008-10-12 Thread Sridhar Kuppalli
(function() { $(#Message).hide(); $(#Gallery).show(); }); /script /head body div id=MessageLoading Page/div div id=Gallery style=display:none; *** Gallery Markup *** / div /body /html On Oct 12, 8:02 am, Sridhar Kuppalli [EMAIL PROTECTED] wrote: Hi All, I

[jQuery] Jquery Tabs inside a Tab

2008-08-28 Thread Sridhar Gowda
Hi, I am using http://cse-mjmcl.cse.bris.ac.uk/blog/jQueryNestedMenus/nested.html for jquery nested tabs. But for my requirement i need to selected default 1st sub tab when i click on parent tab. $('#ddetail_tabs ul').tabs({ selected: 0}); this works only for the parent tab. not for the

[jQuery] Needed link | Jquery simple Dropdown menu

2008-08-23 Thread Sridhar Gowda
Hi All, I am new to jquery a learner. I was just going through the sites for simple jquery menu. But everywhere i am finding accordion menu. I dont need that. Can anyone please help me out with this? any code or link? Thanks Regards Sridhar k n

[jQuery] Re: finding the exact error when using $.ajax

2008-07-25 Thread Sridhar
Friendly Errors (Internet Options / Advanced, it's like the 15th or so item) in your browser (i assume you are using Internet Explorer) On Jul 24, 7:08 pm, Sridhar [EMAIL PROTECTED] wrote: Hi,    I have found out the error. It says 500 internal server error. but it works fine

[jQuery] Re: getJSON: how to attach failure callback?

2008-07-25 Thread Sridhar
you can use $.ajax(options) function for this. In that function specify the dataType as json. On Jul 24, 7:19 pm, S P Arif Sahari Wibowo [EMAIL PROTECTED] wrote: Hi! I am working with getJSON to get JSON data via HTTP GET request. It works well, but sometime the server itself fail to get the

[jQuery] Re: After some clicking it won't show up

2008-07-25 Thread Sridhar
may be the following will work. jQuery(function($) { $(a.help).bind('click', function(){$('.help-popup').hide();$ (this.hash).show();}); }); On Jul 24, 3:28 pm, IschaGast [EMAIL PROTECTED] wrote: I am busy making something like

[jQuery] do validation when value changes in a table cell

2008-06-26 Thread Sridhar
to do this, please let me know, Thanks, sridhar.

[jQuery] validation of a table cell value

2008-06-26 Thread Sridhar
to do this, please let me know, Thanks, sridhar.

[jQuery] key board navigation for textboxes in the grid

2008-06-25 Thread Sridhar
Hi, I have a gridview which has 200 rows and 9 columns in each cell. All the columns have text boxes. I have added the keyboard navigation to the text boxes so that the user can use left, right, up, down arrow keys to go to the next cell. But it is little bit slow. I just want to make sure if

[jQuery] auto complete question

2008-06-24 Thread Sridhar
it will have effect on the performance. Is there a way to use the autocomplete control in the grid with out affecting performance? Thanks, sridhar.

[jQuery] auto complete question

2008-06-24 Thread Sridhar
me know. Thanks, sridhar.

[jQuery] Re: Javascript of jQuery?

2008-05-18 Thread Sridhar Kuppalli
. - Cheers, Sridhar Kuppalli Bangalore [EMAIL PROTECTED] *Behind Every Great Fortune There is a Crime* --

[jQuery] change expand collapse image (swap images)

2008-04-21 Thread Sridhar Gowda
I am using $(#details).slideToggle(slow); for toggling a grid data. for the same i need to show + and - symbols for expand and collapse ( using images). Can anybody help me out with this.So that image also swaps according to the expand or collapsed state. How to achive this? Thanks in advance

[jQuery] Re: Gotcha in the ajax call

2007-10-22 Thread M. A. Sridhar
' property to false. Are you doing that? --Erik On 10/21/07, M. A. Sridhar [EMAIL PROTECTED] wrote: When making a GET call via jQuery.ajax, jQuery 1.2.1 adds a URL parameter named '_' (the single underscore character) whose value is the current time stamp. I'm not sure I understand why

[jQuery] Gotcha in the ajax call

2007-10-21 Thread M. A. Sridhar
When making a GET call via jQuery.ajax, jQuery 1.2.1 adds a URL parameter named '_' (the single underscore character) whose value is the current time stamp. I'm not sure I understand why, and in any case, this caused me some grief when I tried to use it in a Facebook app. The reason is that the