Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for .NET
»
Re: Regarding Auto Adjusting Height
Regarding Auto Adjusting Height
Last post 07-13-2009, 10:04 AM by
sanjay.joshi
. 2 replies.
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
07-13-2009, 2:29 AM
53919
sanjay.joshi
Joined on 09-02-2008
Posts 82
Regarding Auto Adjusting Height
Reply
Quote
Hi Adam/Kenneth,
I have implemented the Auto adjusting height feature of the editor but need to make a max size upto which it can extend. Do we have any way by which we can set the max height of the editor after which we can have scroll bar in editor.
Thanks,
Sanjay
07-13-2009, 3:14 AM
53922
in reply to
53919
Kenneth
Joined on 02-13-2008
Posts 3,886
Re: Regarding Auto Adjusting Height
Reply
Quote
Hi sanjay,
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 type=
"text/javascript"
>
setInterval(
"refreshTime()"
,1000);
function refreshTime()
{
var editor=document.getElementById(
'<%= editor1.ClientID%>'
);
var h=editor.GetDocument().body.scrollHeight;
if
(h<170)h=170;
if
(h>500)h=500;
editor.style.height=h+150+
"px"
;
}
</script>
<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"
>
</CE:Editor>
</div>
</form>
</body>
</html>
Regards,
Ken
07-13-2009, 10:04 AM
53928
in reply to
53922
sanjay.joshi
Joined on 09-02-2008
Posts 82
Re: Regarding Auto Adjusting Height
Reply
Quote
Hi Ken,
Thanks for a quick reply.
Actually the solution which you have send is not quite appropriate to our scenerio. Please provide some other solutions if you have to solve this problem
Thanks,
Sanjay