Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for .NET
»
Re: Make the editor vertically and horizontally stretched in the page
Re: Make the editor vertically and horizontally stretched in the page
07-28-2010, 9:36 PM
Kenneth
Joined on 02-13-2008
Posts 3,886
Re: Make the editor vertically and horizontally stretched in the page
Reply
Quote
Hi Mikenas,
Another example
<%@ Page Language=
"C#"
%>
<%@ Register Namespace=
"CuteEditor"
Assembly=
"CuteEditor"
TagPrefix=
"CE"
%>
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<script runat=
"server"
>
protected
override
void
OnLoad(EventArgs e)
{
editor1.ResizeMode = CuteEditor.EditorResizeMode.AutoAdjust;
base
.OnLoad(e);
}
</script>
<html xmlns=
"http://www.w3.org/1999/xhtml"
>
<head id=
"Head1"
runat=
"server"
>
<title>Untitled Page</title>
<style type=
"text/css"
>
html, body, form{ height: 100%;}
</style>
</head>
<body>
<form id=
"form1"
runat=
"server"
>
<div>
<CE:Editor ID=
"editor1"
runat=
"server"
Width=
"100%"
>
</CE:Editor>
</div>
</form>
</body>
</html>
<script type=
"text/javascript"
>
setInterval(
"refreshTime()"
,500);
function refreshTime()
{
var editor=document.getElementById(
'<%= editor1.ClientID%>'
);
var h=editor.GetDocument().body.scrollHeight;
editor.style.height=document.body.scrollHeight-30+
"px"
;
}
</script>
Regards,
ken
View Complete Thread