Answered
Short toolbar in cftextarea.
Hello everyone! The toolbar in Coldfusion 21 cftextarea is not similar to the one in Coldfusion 10. How to reduce the toolbar to 3 elements: Bold, Italic, Underline. Thanks!
Cftextarea.cfm
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>cftextarea</title>
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<cfform name="frmExample">
<div id="cftextarea_content">
<cftextarea name="mytext" richtext="true" toolbar="Single">
Make Love Not War!
</cftextarea>
</div>
<cfinput type="submit" value="Ok" name="submit"/>
</cfform>
</body>
</html>
