Changes between Initial Version and Version 1 of Ticket #8115
- Timestamp:
- Sep 15, 2011, 6:52:20 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8115
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
invalid
-
Property
Status
changed from
-
Ticket #8115 – Description
initial v1 2 2 3 3 following is the ckeditor I have put into my .net application 4 4 {{{ 5 5 <CKEditor:CKEditorControl ID="txtText" runat="server" 6 6 CssClass="validate[required]" CausesValidation="True"> 7 7 8 8 </CKEditor:CKEditorControl> 9 9 }}} 10 10 and following is the jquery code, I am using 11 11 {{{ 12 12 jQuery(document).ready(function() { 13 13 $('#ClickWordList li').click(function() { $('ctl00_ContentPlaceHolder1_ctrlEntry_txtText').val($(this).text()); return false }); … … 15 15 $("#templateContentArea").validationEngine(); 16 16 }); 17 17 }}} 18 18 Please can you let me know is it possible to set the value of UI LI into CKEditor textarea. 19 19