Hello, i use FCKE and i have this big problem:
FCKE automatic format html source and remove spaces and others variables. This make Surce code illegible and wrong !!!!
Example:
------------
<input type="checkbox" name="cbctr" {checked_variable}>
<br>
<table>
<tr>
<td>hola
</td>
</tr>
</table>
After paste into code area, and switch view and again back to code I get:
<input type="checkbox" name="cbctr" value="on" /> <br /><table><tbody><tr><td>hola </td></tr></tbody></table>
Question:
-------------
How can I avoid this source formating ???
Thank You!!!
FCKE automatic format html source and remove spaces and others variables. This make Surce code illegible and wrong !!!!
Example:
------------
<input type="checkbox" name="cbctr" {checked_variable}>
<br>
<table>
<tr>
<td>hola
</td>
</tr>
</table>
After paste into code area, and switch view and again back to code I get:
<input type="checkbox" name="cbctr" value="on" /> <br /><table><tbody><tr><td>hola </td></tr></tbody></table>
Question:
-------------
How can I avoid this source formating ???
Thank You!!!

RE: Avoid FCKE html source code formating?
Example:
[HTML]
<input type="checkbox" name="cbctr" {checked_variable1}>
<input type="checkbox" name="cbctr" {checked_variable2}>
[PHP]
switch ($type) {
case 1:
replace_htmlVar ("checked_variable1", checked);
break;
case 2:
replace_htmlVar ("checked_variable2", checked);
break;
}
PROBLEM: FCKE destroy variables {checked_variable1} and {checked_variable2}.
Can I avoid this? Thank you again!
RE: Avoid FCKE html source code formating?