Couse i´m not using a table layout =P
but i´m using div.table ul.tr li.td
.table {
display: table;
}
.tr{
display: table-row;
}
.td {
display: table-cell;
}

The error is in 795 line
jQuery(element).data is not a function
[Break on this error] : jQuery(element).data();

a bit of code

<div class='table borda_lickert'>
                        <ul class='tr'>
                        <li class='lickert'><img 
src='images/emoticon_triste.gif'
alt='Discordo Plenamente' /></li>
                        <li class='lickert'>&nbsp;</li>
                        <li class='lickert'><img 
src='images/emoticon_mai_o_meno.gif'
alt='Meio Termo' /></li>
                        <li class='lickert'>&nbsp;</li> 
                        <li class='lickert'><img src='images/emoticon_feliz.gif'
alt='Concordo Plenamente' /></li>

                        </ul>
                        <ul class='tr'>
                        <li class='lickert'><input type='radio' name='perg23' 
id='perg23'
value='107' /></li>
                        <li class='lickert'><input type='radio' name='perg23' 
id='perg23'
value='108' /></li>
                        <li class='lickert'><input type='radio' name='perg23' 
id='perg23'
value='109' /></li>
                        <li class='lickert'><input type='radio' name='perg23' 
id='perg23'
value='110' /></li>
                        <li class='lickert'><input type='radio' name='perg23' 
id='perg23'
value='111' /></li>
                        </ul>
                        </div>


Thanks for your atention!!!


On 8/20/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
>
> Jean schrieb:
> > I had a problem with a validation plugin in a form with some ul li 
> > fomatation
> > couze i´m using display: table and cia to emulate a table formation
> > Can anyone help me?
> >
> Could you explain what exactly your problem is?
>
> If you are using a table layout, why don't you use a table? Here is an
> example for the errorPlacement option that works with a table layout,
> assuming that the error message should be displayed in the cell next to
> the input [label, input, message].
>
> $("#myform").validate({
>         errorPlacement: function(error, element) {
>                 error.appendTo( element.parent("td").next("td") );
>         },
>         success: function(label) {
>                 label.text("ok!").addClass("success");
>         }
> });
>
>
> -- Jörn
>


-- 

[]´s Jean
www.suissa.info

   Ethereal Agency
www.etherealagency.com

Reply via email to