Log in or register to post comments
Last post
CUSTOM HTML
Hi all,

I want to use my custom HTML in CkEdiotr

I want to hide row dynamically, so i put some custom tag between <tr> like below code...
<table width="100%" cellpadding="2" cellspacing="2" border="1" style="border: solid 1px Black;
                                    border-collapse: collapse; %%displaywholetable%%">
                                    <tr>
                                        <td width="40%" style="height: 30px;">
                                            &nbsp;
                                        </td>
                                        <td width="10%">
                                            <b>Article</b>
                                        </td>
                                        <td width="50%">
                                            <b>Observations (détaillées)</b>
                                        </td>
                                    </tr>
                                    <dynamic>%%START-DISPLAYWHOLETABLE1%%</dynamic>
                                    <tr style="">
                                        <td style="height: 30px;">
                                            <b>Sécurité physique et santé des occupants </b>
                                        </td>
                                        <td>
                                            &nbsp;
                                        </td>
                                        <td>
                                            &nbsp;
                                        </td>
                                    </tr>
                                    <dynamic>%%END-DISPLAYWHOLETABLE1%%</dynamic></table>


but ck editor source is change it to

<dynamic>%%START-DISPLAYWHOLETABLE1%%</dynamic><dynamic>%%END-DISPLAYWHOLETABLE1%%</dynamic>
<table width="100%" cellpadding="2" cellspacing="2" border="1" style="border: solid 1px Black;
                                    border-collapse: collapse; %%displaywholetable%%">
                                    <tr>
                                        <td width="40%" style="height: 30px;">
                                            &nbsp;
                                        </td>
                                        <td width="10%">
                                            <b>Article</b>
                                        </td>
                                        <td width="50%">
                                            <b>Observations (détaillées)</b>
                                        </td>
                                    </tr>
                                    
                                    <tr style="">
                                        <td style="height: 30px;">
                                            <b>Sécurité physique et santé des occupants </b>
                                        </td>
                                        <td>
                                            &nbsp;
                                        </td>
                                        <td>
                                            &nbsp;
                                        </td>
                                    </tr>
                                    </table>


so it is not useful to me.. How I can do this.....
Re: CUSTOM HTML
Please some one give ans of my question ..