[jQuery] Changing Classes

2011-12-20 Thread Denis Caggiano
Hi, I having trouble with change class in HTML report. This change must happen in line and columns when cursor is on a cell. I created an ID for every cell to know witch column is my cursor on. Then run a each() for every cell that has an ID like that one. The problem is the reports with many line

Re: [jQuery] jqGrid

2010-08-04 Thread Denis Caggiano
data to the server. with > the POST array formed (or what will become it after submitting) > > Ricardo Verhaeg > Bacharelado Ciências da Computação - USP - São Carlos (2005) > Virgos Tecnologia da Informação - Desenvolvimento > > > > On Fri, Jul 30, 2010 at 17:34, Denis

[jQuery] jqGrid

2010-07-30 Thread Denis Caggiano
Does anyone here had use the jqGrid? If yes, how can I use *onclickSubmit* event in the edit submit button? I cant understand this documentation: http://www.trirand.com/jqgridwiki/doku.php?id=wiki:form_editing Tks. -- Denis Martin

Re: [jQuery] Re: Functions

2009-11-18 Thread Denis Caggiano
Now Im get confused... Wil, Is the code that you suggested equal that I wrote? Mine $("#tb a").click(function() { alert(this.id); }); Wil $("#tb a").click(function() { alert('Test'); }); Tks

Re: [jQuery] Re: Functions

2009-11-18 Thread Denis Caggiano
The hint of the day: *The other thing to make sure you're doing is to call your code once* *the DOM is loaded* *---By Scott* ** Im using AJAX and defyning the $("#tb a").click before the DOM is loaded and that was the problem. Here is my $.post now: $.post( 'adm_cobranca_ajax.asp', { mes:

Re: [jQuery] Need help in making AJAX call in IE8

2009-11-18 Thread Denis Caggiano
When I need to use ajax in my applications I implement the $.post and never had problems. Try to use this.

Re: [jQuery] Re: Functions

2009-11-18 Thread Denis Caggiano
Hi Greg, I'm defined an ID to my table (ID = "tb") that have my report, and trying to code like this: $("#tb > a").click(function() { alert('Test'); }); But it doesnt working. In other words, how can I define that all in my table triggers an event when clicked? Tks

[jQuery] Functions

2009-11-17 Thread Denis Caggiano
Hi, Just to looking for a better way to use jQuery, here is my doubt. There is a page that uses $.post to call another page that build a report in html table format to put the generated code in a div. So far so good...but...in one of the columns of the report, has a link that executes a javascript

Re: [jQuery] Re: keyup on textfields

2009-11-03 Thread Denis Caggiano
Actually, I need only 4 text fields to trigger the function and I have 10. :) But tks for the hint.

Re: [jQuery] Re: keyup on textfields

2009-10-30 Thread Denis Caggiano
Tks James, You help me to write a clean code.