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

[Solved] Using the new Tool EditorSplitButton

1 Answer 86 Views
Editor
This is a migrated thread and some comments may be shown as answers.
fquinty
Top achievements
Rank 1
fquinty asked on 28 Jun 2009, 03:04 PM
Hello,

I am Trying the new EditorSplitButton. It's fine but I do not want to memorize the selected item. I would like to display the items list each I click on the tool , not only when I click on the arrow.

How can I clean (client-side) the memorization of the previous selected item of the EditorSplitButton.

I did not find any client-side documentation about EditorTool.

Thanks for your help

Frank Quinty

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 01 Jul 2009, 02:16 PM
Hello fquinty,

In case you would like to expand every time for example the PasteStrip tool, you can set the following code that will disable the header update functionality of the toolstrip:

<script type="text/javascript">  
function OnClientLoad(editor)  
{  
    var tool = editor.getToolByName("PasteStrip");  
    //Disable header update functionality  
    tool.set_updateHeader(false);  

</script>       
<telerik:radeditor runat="server" ID="RadEditor1" OnClientLoad="OnClientLoad"></telerik:radeditor> 

Greetings,
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
fquinty
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or