Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
HTML
 <script src="jscripts/tiny_mce/tiny_mce.js" type="text/javascript"></script>

   function callInt<%= txtBody.ClientID%>() {
        tinyMCE.init({
            mode: "textareas",
            elements: "<%= txtBody.ClientID%>",
            theme: "advanced",
            skin: "o2k7",
            plugins: "inlinepopups,paste,safari",
            theme_advanced_buttons1: "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,fontselect,fontsizeselect",
            theme_advanced_buttons2: "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,|,insertdate,inserttime,preview,|,forecolor,backcolor",
            theme_advanced_buttons3: "",
            theme_advanced_toolbar_location: "top",
            theme_advanced_toolbar_align: "left",
            cleanup_callback: "myCustomCleanup<%= txtBody.ClientID%>",
            save_callback: "myCustomSaveContent<%= txtBody.ClientID%>"

        });
    }

<table width="100%" border="0" align="left" cellpadding="0" cellspacing="0">
    <tr>
        <td width="100%">

            <textarea id="txtBody" runat="server" name="Name" style="width: 825px"></textarea>

        </td>
    </tr>
</table>

Ajax modal pop Firefox this text area not enable i am using

[Edit member="Tadit"]
Added proper pre tags.
[/Edit]
Posted
v2
Comments
Please explain the issue clearly.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900