Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for .NET
»
Re: Resize mode property
Re: Resize mode property
07-13-2009, 2:37 AM
Kenneth
Joined on 02-13-2008
Posts 3,886
Re: Resize mode property
Reply
Quote
Hi rajmohanp,
Try this way
<%@ 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>
<script type=
"text/javascript"
>
setInterval(
"refreshTime()"
,1000);
function refreshTime()
{
var editor=document.getElementById(
'<%= editor1.ClientID%>'
);
var w=editor.GetDocument().body.scrollWidth;
if
(w<760)w=760;
editor.style.width=w+10+
"px"
;
}
</script>
<html xmlns=
"http://www.w3.org/1999/xhtml"
>
<head runat=
"server"
>
<title>Untitled Page</title>
</head>
<body>
<form id=
"form1"
runat=
"server"
>
<div>
<CE:Editor ID=
"editor1"
runat=
"server"
>
</CE:Editor>
</div>
</form>
</body>
</html>
Regards,
ken
View Complete Thread