hi guys i have a very annoying problem with fck editor version 2.6.4
i load the editor in a div loading the following piece of html code
but when i load the editor, it modify the original html
the editor but some code into the table on the top
i want to avoid it!!!
please help me
i load the editor in a div loading the following piece of html code
<table border="1" style="width: 100%;"> <tbody> <tr> <th><span style="font-family: arial,helvetica,sans-serif;">Dal</span></th> <th><span style="font-family: arial,helvetica,sans-serif;">Al</span></th> <th><span style="font-family: arial,helvetica,sans-serif;">Assenza</span></th> <th><span style="font-family: arial,helvetica,sans-serif;">Riduzione</span></th> <th><span style="font-family: arial,helvetica,sans-serif;">Giorni Decurtati</span></th> </tr> #foreach( $decurtazione in $riga.decurtazioni ) <tr> <td><span style="font-family: arial,helvetica,sans-serif;">$globals.format.FormatDateTime($decurtazione.Inizio,"dd/MM/yyyy")</span></td> <td><span style="font-family: arial,helvetica,sans-serif;">$globals.format.FormatDateTime($decurtazione.Fine,"dd/MM/yyyy")</span></td> <td><span style="font-family: arial,helvetica,sans-serif;">$decurtazione.Codice</span></td> <td><span style="font-family: arial,helvetica,sans-serif;">$decurtazione.Riduzione</span></td> <td><span style="font-family: arial,helvetica,sans-serif;">$decurtazione.Giorni</span></td> </tr> #end </tbody> </table>
but when i load the editor, it modify the original html
#foreach($decurtazione in $riga.decurtazioni) #end <table border="1" style="width: 100%;"> <tbody> <tr> <th><span style="font-family: arial,helvetica,sans-serif;">Dal</span></th> <th><span style="font-family: arial,helvetica,sans-serif;">Al</span></th> <th><span style="font-family: arial,helvetica,sans-serif;">Assenza</span></th> <th><span style="font-family: arial,helvetica,sans-serif;">Riduzione</span></th> <th><span style="font-family: arial,helvetica,sans-serif;">Giorni Decurtati</span></th> </tr> <tr> <td><span style="font-family: arial,helvetica,sans-serif;">$globals.format.FormatDateTime($decurtazione.Inizio,"dd/MM/yyyy")</span></td> <td><span style="font-family: arial,helvetica,sans-serif;">$globals.format.FormatDateTime($decurtazione.Fine,"dd/MM/yyyy")</span></td> <td><span style="font-family: arial,helvetica,sans-serif;">$decurtazione.Codice</span></td> <td><span style="font-family: arial,helvetica,sans-serif;">$decurtazione.Riduzione</span></td> <td><span style="font-family: arial,helvetica,sans-serif;">$decurtazione.Giorni</span></td> </tr> </tbody> </table>
the editor but some code into the table on the top
i want to avoid it!!!
please help me