This is a migrated thread and some comments may be shown as answers.

[Solved] selected bold button

1 Answer 127 Views
Editor
This is a migrated thread and some comments may be shown as answers.
suat
Top achievements
Rank 1
suat asked on 06 Jul 2009, 07:27 PM
Hello everyone,
Rad editor button on the page load process selected in bold I would like to bring.

What can I do to.

thanks

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 09 Jul 2009, 10:43 AM
Hi Suat,

What you can do is to fire the Bold command of RadEditor on page load. Here is a sample code:

<telerik:radeditor runat="server" ID="RadEditor1" OnClientLoad="OnClientLoad"></telerik:radeditor> 
<script type="text/javascript"
function OnClientLoad(editor) 
  setTimeout(function() 
  { 
   editor.fire("Bold"); 
  }, 10); 
</script>  


All the best,
Rumen
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Editor
Asked by
suat
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or