Thanks again Robert, booth proposals are great. at now, my next step is another function that marks all cells with the same content in another color.
and at last i will realise a function to load more content via ajax. (With every click on a next button load 20 rows more) if you are interested in i'am going to keep you inform. cheers, On 2 Feb., 23:06, Robert <forpoc...@gmail.com> wrote: > I would do this like this:http://jsfiddle.net/YQgcN/1/ > or even better like this:http://jsfiddle.net/YQgcN/2/ > to avoid annoing bliking effect on selected column cells. > Also I am big fan of asymetric effect. ;) > > Maybe other mootoolers have better solution... > > cheers, > > On 2 Lut, 18:52, hamburger <bilidi...@web.de> wrote: > > > Hello Robert, > > thanks for your suggestion but i saw it to late. i realized it like > > this for now: > > >http://jsfiddle.net/YQgcN/ > > > you are wellcome for any improvement > > and may be you have a solution for my mark function. (you will mark a > > cell if you click in it) > > i would like to have a remark function. i thougt i can easy toggle the > > new Fx.Tween(this).start('background-color', '#fff', '#EDA300', > > {duration: 'long'}).toggle(); > > but it do not work. > > anyway thanks for you interrest > > > On 2 Feb., 12:25, Robert <forpoc...@gmail.com> wrote: > > > > So, You need something like this:http://jsfiddle.net/CG8Gj/7/ > > > remember to use selectors to Your advantage and never repeat a select > > > if not necessary ;) > > > > cheers, > > > > On Feb 1, 4:58 pm, hamburger <bilidi...@web.de> wrote: > > > > > Hello Robert, > > > > i trying to switch on/off my table-collums via ckeckboxes. > > > > i think i have it now. > > > > thanks also to Slik. (I expected an coding moo-error but you are > > > > right, it was a html one.) > > > > > On 1 Feb., 14:16, Robert <forpoc...@gmail.com> wrote: > > > > > > Try this:http://jsfiddle.net/CG8Gj/6/ > > > > > > What are You trying to do? > > > > > > On Feb 1, 1:16 pm, hamburger <bilidi...@web.de> wrote: > > > > > > > Hello, > > > > > > in the following code i get an error that row[1] is not definded. > > > > > > > var rows = $('theTable').getElements('tr').getElements('td'); > > > > > > > rows.each( function(row,number){ > > > > > > row.setStyle('display', 'none'); //works > > > > > > //row[1].setStyle('display', 'none'); do not work > > > > > > console.log("zelle"+number,row[0]); > > > > > > }); > > > > > > >http://jsfiddle.net/CG8Gj/2/ > > > > > > > what i am doing wrong?