The background images and colors for FTB do not appear on my web page. I'm working in an ASP.Net project in VS 2008. Below is what my code looks like.
The FreeTextBox.dll is in my project's bin directory. My understanding is that all images are pulled from the dll when using Framework 2.0. I'm using FTB version 3.1.6.
The menu successfully displays the various icon images, like the undo or bullet buttons, but it doesn't render the blue background image. Also, if you hover over an icon the orange background within the black border appears. It's just not displaying the default backgrounds.
Is there some property that I need to set in the control? Thanks.
Ken
<
table width="100%">
<tr>
<td><FTB:FREETEXTBOX id="txtDocument" EnableHtmlMode="False" Width="100%" runat="server" AllowHtmlMode="True"
StripAllScripting="True" Height="400px" FormatHtmlTagsToXhtml="False"
AutoGenerateToolbarsFromString="true"
ToolbarLayout="ParagraphMenu, FontFacesMenu, FontSizesMenu, Bold, Italic, Underline,
JustifyLeft, JustifyRight, JustifyCenter, JustifyFull, BulletedList,
NumberedList, Indent, Outdent, Cut, Copy, Paste, Delete, Undo, Redo"
>
</FTB:FREETEXTBOX>
</td>
</tr>
</table>