Is it possible to have a different set of toolbars shown when the user toggles between normal and full screen mode. I would like to have a minimal set of tools showing initially and when the use toggles to full screen mode to show a full set.
You can find attached the requested example. The solution is a little bit tricky: there are two editors with different toolbars on the page and each one is placed in different DIV element. The first DIV is visible and the second one is hidden. When pressing the ToggleScreenMode button of the first editor, the DIV of the visible editor is hidden and the second DIV became visible. The content from the first editor is transmitted to the second one, which is now in full screen mode.
When we press the ToggleScreenMode button of the second editor, we make its DIV element again invisible and show the first hidden DIV. The content from the second editor in transmitted to the first editor too.
<script type="text/javascript">
var div1 = document.getElementById("editorContainer1");
var div2 = document.getElementById("editorContainer2");
var editor1;
var editor2;
var toHide = false;
var content;
Sys.Application.add_load(function()
{
editor1 = $find("<%=RadEditor1.ClientID%>"); //get a reference to RadEditor client object
editor2 = $find("<%=RadEditor2.ClientID%>");
}
);