Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for .NET
»
Re: AutoExpand Height to fill page?
Re: AutoExpand Height to fill page?
08-21-2009, 1:09 AM
Kenneth
Joined on 02-13-2008
Posts 3,886
Re: AutoExpand Height to fill page?
Reply
Quote
Hi Lozzi,
Try this 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"
>
<html xmlns=
"http://www.w3.org/1999/xhtml"
>
<head id=
"Head1"
runat=
"server"
>
<title>Untitled Page</title>
</head>
<body>
<form id=
"form1"
runat=
"server"
>
<div>
<CE:Editor ID=
"editor1"
runat=
"server"
ResizeMode=AutoAdjust>
</CE:Editor>
</div>
</form>
</body>
</html>
<script type=
"text/javascript"
>
setInterval(
"refreshTime()"
,1000);
function refreshTime()
{
var editor=document.getElementById(
'<%= editor1.ClientID%>'
);
editor.style.height= Math.max( document.body.clientHeight , document.documentElement.clientHeight )-50+
"px"
}
</script>
Regards,
Ken
View Complete Thread