Hi,
My application uses the cute editor on a page in read only mode so that users can actually type in values into the form elements like text boxes, radio buttons etc much like they were using a regular web form. In order to do this I set the following code
this.FormEditor.ShowPreviewMode = true;
this.FormEditor.ShowToolBar = false;
this.FormEditor.ActiveTab =CuteEditor.TabType.View;
this.FormEditor.ShowBottomBar= false;
My clients want to be able to maximise and minimise the editor in this mode. Is it possible or do I need to display the toolbar to do it.
Thanks
Amrita