ComponentOne Extender Controls for ASP.NET Web Forms
Wijmo Control Toolkit Extender Controls / C1EditorExtender / C1EditorExtender Tutorial / Step 1of 3: Adding a C1EditorExtender to the Page
In This Topic
    Step 1of 3: Adding a C1EditorExtender to the Page
    In This Topic

    This tutorial demonstrates how to attach the C1EditorExtender to a TextBox control, allowing users to edit text within the editor.

    1. In your Web application, add a standard TextBox control to the main content of  your page.
    2. Click the TextBox smart tag and select Add Extender from the Tasks menu.
    3. In the Extender Wizard, select C1EditorExtender and click OK. A C1EditorExtender control is added to the page and the TargetControlID is set to TextBox1.

    <cc1:C1EditorExtender ID="TextBox1_C1EditorExtender" runat="server"

            FontNames="Arial,Courier New,Garamond,Tahoma,Times New Roman,Verdana,Wingdings"

            FontSizes="VerySmall,Smaller,Small,Medium,Large,Larger,VeryLarge"

            SimpleModeCommands="Bold,Italic,Link,BlockQuote,StrikeThrough,InsertDate,InsertImage,NumberedList,BulletedList,InsertCode"

            TargetControlID="TextBox1">

        </cc1:C1EditorExtender>

    In the next step you will set some of the extender properties.