[jQuery] Show Hide 'td' on click of a link

2010-02-12 Thread shabby
I have a table that contains information that is hidden within a 'td'
element. Users can access this information if they wish by clicking on
a link that is held in another 'td' element on the previous row (table
structure below):

table
tr
tda href=# class=install_toggleShow options/a/td
/tr
tr
td class=installsome option info/td
/tr
tr
tda href=# class=install_toggleShow options/a/td
/tr
tr
td class=installsome option info/td
/tr
/table

i have given each link a class name: install_toggle
i hav given the hidden 'td' elements a class name: install

on the click of the link with the class name: install_toggle, i want
the next 'td' element with the class name: install to toggle.

this is what i have gotten so far:

$(function() {
$('td.install').addClass('hide');

$('a.install_toggle').toggle(function() {
$(this).html('Hide Options');
$(this).next('.install').removeClass('hide');
  },function(){
$(this).html('Show Options');
$(this).next('.install').addClass('hide');
});
});

This does not work. What am i doing wrong?


[jQuery] ajaxsubmit dosn´t send the response to the defined target

2010-02-12 Thread Piet
Dear all,

I´m using ajaxSubmit to send a form (incl. fileuploads) to my server.
Everthings works well but the response from the server will not
displayed in the defined target (div id=Preview). Instead of the
response is display in target=_blank.

What could be wrong???

The submit bind is

   $(document).ready(function() {
$('#store').bind('submit', function() {
 $(this).ajaxSubmit({
  target: '#Preview'
 });
 return false;
});
   });

Greetings

Peter


[jQuery] Re: ajaxsubmit dosn´t send the response to the defined target

2010-02-12 Thread Marty Jones
I know this may sound silly but do you have a div element with a id of
'Preview'?

On Feb 12, 5:43 am, Piet peter.fr...@sellbytel.de wrote:
 Dear all,

 I´m using ajaxSubmit to send a form (incl. fileuploads) to my server.
 Everthings works well but the response from the server will not
 displayed in the defined target (div id=Preview). Instead of the
 response is display in target=_blank.

 What could be wrong???

 The submit bind is

    $(document).ready(function() {
     $('#store').bind('submit', function() {
      $(this).ajaxSubmit({
       target: '#Preview'
      });
      return false;
     });
    });

 Greetings

 Peter


Re: [jQuery] Re: ajaxsubmit dosn´t send the respons e to the defined target

2010-02-12 Thread Jonathan Vanherpe (T T nv)

And more importantly, does it have the same case?

Marty Jones wrote:

I know this may sound silly but do you have a div element with a id of
'Preview'?

On Feb 12, 5:43 am, Pietpeter.fr...@sellbytel.de  wrote:

Dear all,

I´m using ajaxSubmit to send a form (incl. fileuploads) to my server.
Everthings works well but the response from the server will not
displayed in the defined target (div id=Preview). Instead of the
response is display in target=_blank.

What could be wrong???

The submit bind is

$(document).ready(function() {
 $('#store').bind('submit', function() {
  $(this).ajaxSubmit({
   target: '#Preview'
  });
  return false;
 });
});

Greetings

Peter





--
Jonathan Vanherpe - Tallieu  Tallieu nv - jonat...@tnt.be


[jQuery] unsubscribe

2010-02-12 Thread Smith, Allex



[jQuery] Error: illegal access to loading collection Opções

2010-02-12 Thread Bruno Leitão de Oliveira
I have this case:
public sealed class ClienteMap : ClassMapEntities.Cliente {
public ClienteMap() {
Id(x = x.Codigo).GeneratedBy.Native();
HasMany(x = x.Consumacoes).AsList();
}


}


and:

public sealed class ConsumacaoMap : ClassMapEntities.Consumacao {
public ConsumacaoMap() {
Id(x = x.Codigo).GeneratedBy.Native();
References(x = x.Cliente).Not.Nullable();
}



}


When i load a 'Cliente' the property 'Consumacoes' thown Error:
illegal access to loading collection.

Im using auto property, like this:


public class Cliente {
 public Int64 Codigo { get; set; }
 piblic IListConsumacao Consumacoes { get; set; }



}


and:

public class Consumacao {
 public Int64 Codigo { get; set; }
 public Cliente ClienteDaConsumacao { get; set; }



}


Re: [jQuery] JQuery tablesorter problem

2010-02-12 Thread ramesh dhage
On 2/4/10, Nagaraju man25...@gmail.com wrote:

 I am facing problem with jquery.tablesorter.js

 It's working fine if I have more than column in sorting/header list.

 But if I have one column in sorting/header showing following error.

 o is undefined
 o.order = o.count = s[1];  (jquery.tablesorter.js  at line 421)

 Please suggest me fix for this

 Regards
 Nagaraju P



Re: [jQuery] Tivoli resource needed for 1 year project in Austin, TX

2010-02-12 Thread Camilo Aguilar
hey please ! stop the spam

On Tue, Feb 9, 2010 at 3:11 PM, Eswar Rao eswa...@gmail.com wrote:

 Hi partner,

 pleases send resume to easw...@vasysgroup.com


 *Requirement:*



 Tivoli Development Services has a requirement for system
 administrator/security compliance administrator to perform compliance checks
 on the development/test lab systems and, if necessary, bring the servers and
 systems up to corporate security compliance. There are several hundred
 machines that require compliance updating and the ensuing testing to ensure
 that they are operating correctly once the compliance is established.



 *Location:*  Austin, TX



 *Duration*:  1 year



 ~

 Thanks  Regards…


 Easwar Rao

 *Vasys Group Inc.,*

 Toll Free :1866-299-4226

 Direct : 614-408-8539(w)

 *eas...@vasysgroup.com* www.vasysgroups.com




-- 
  There are two ways of constructing a software design: One way is to make
it so simple that there are obviously no deficiencies, and the other way is
to make it so complicated that there are no obvious deficiencies. The first
method is far more difficult.  -C. A. R. Hoare

  Any fool can write code that a computer can understand. Good programmers
write code that humans can understand. - Martin Fowler