Home
Web CMS (TeamSite)
How to make VFE stop reformatting HTML?
tlung
In the VFE, if I enter HTML such as:
<form>
Name1: <input type="text" name="name1">
Name2: <input type="text" name="name2">
Name3: <input type="text" name="name3">
Name4: <input type="text" name="name4">
</form>
the VFE will reformat it as:
<form>Name1: <input name="name1"> Name2: <input name="name2"> Name3: <input name="name3"> Name4: <input name="name4"></form>
It puts everything in one big line, instead of preserving my formatting, which makes the code very unreadable. Is there a way to stop the VFE from reformatting the HTML?
Thanks for any suggestions.
Find more posts tagged with
Comments
pdasarat
There is a huge documentation for VFE located under httpd\iw\ewebeditpro20\developerguide.pdf . I have done this in the past. You can refer to the documentation.
Pradeep