Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for .NET
»
Re: how to disable the "more color"
how to disable the "more color"
Last post 06-30-2009, 3:33 AM by
goh6613
. 4 replies.
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
06-29-2009, 1:37 AM
53574
goh6613
Joined on 12-17-2008
Posts 74
how to disable the "more color"
Reply
Quote
hi
how can i disable the "more colors" at color picker ?
i set
editorconstant.ShowMoreColors
=
false
;
at constant.js , but it did not work...
can someone show me how to do this ?
thanks
06-29-2009, 7:39 AM
53582
in reply to
53574
Kenneth
Joined on 02-13-2008
Posts 3,886
Re: how to disable the "more color"
Reply
Quote
Hi goh6613,
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"
>
</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>
<script> CuteEditorShowMoreColors=
false
</script>
Regards,
Ken
06-29-2009, 8:00 PM
53611
in reply to
53582
goh6613
Joined on 12-17-2008
Posts 74
Re: how to disable the "more color"
Reply
Quote
hi
i try your example, but the "More Colors" is still there
06-29-2009, 8:55 PM
53613
in reply to
53611
Kenneth
Joined on 02-13-2008
Posts 3,886
Re: how to disable the "more color"
Reply
Quote
Hi goh6613,
The exampl works for me.
Is your site online now? if so, please post the test url here.
Regards,
ken
06-30-2009, 3:33 AM
53622
in reply to
53613
goh6613
Joined on 12-17-2008
Posts 74
Re: how to disable the "more color"
Reply
Quote
hi kenneth
after upgrade my cute editor to version 6.4, this problem solved
thanks