下面工作的多個問題是鏈接到有我用我的網頁上的兩個RAdEditors代碼:與Telerik的RadEditor
,我所面臨的問題如下:
當我點擊EditorQues裏面,它的工具欄顯示。但是當我點擊鍵入EditorAns時,EditorQues的基本工具欄不斷顯示。 我想要這個基本的工具欄隱藏焦點是在EditorAns內。
Ajax拼寫檢查在編輯器中不起作用。但是,當我在沒有母版頁的aspx頁面中嵌入相同的編輯器時,Ajax拼寫檢查器效果很好。 爲什麼拼寫檢查器不能在我的這個有主頁的頁面中工作?當我點擊兩個編輯器工具欄中的拼寫檢查按鈕時,它會顯示消息「拼寫檢查進行中」和「完成拼寫檢查」 和「取消」按鈕灰顯,所以我無法點擊它們,我必須刷新頁面每次都會使這些「完成拼寫檢查」 和「取消」按鈕消失。我該如何解決?我的意思是使用母版頁與拼寫檢查器有什麼關係?我測試了這個另一個母版頁,拼寫檢查工作正常。 爲什麼它不適用於特定的母版頁?什麼可能是錯的?
在編輯器中。 CustomSkin。 Css,我已將默認字體設置爲14px,Verdana和Normal,但是當編輯器加載時,我看不到在此CSS中設置的字體屬性 。爲什麼這些屬性沒有被覆蓋,並且母版頁的CSS正在被應用?
必需的字段驗證程序不能使用rad編輯器。編輯器的內容被存儲爲空字符串或中斷選項卡「br /」。 如何驗證RadEditor,以便空字符串不會存儲在我的數據庫中?
下面是css文件:
母版頁的CSS文件:
body {padding:0; margin:0; background-image:url(../images/bg.gif); background-repeat:repeat-x repeat-y;}
body, td, input, textarea{
font-size:11px;
font-family:Tahoma;
color:#5D5F60;
line-height:13px;
vertical-align:top;
padding:0px;
}
編輯器。 CustomSkin。 Css 我在Telerik的網站上關於如何使用外部CSS的一些教程和實施如下: -
我已將Default Skin的CSS文件(編輯器。默認.Css)更名爲編輯器。 CustomSkin。CSS和做了如下補充: -
添加這在我的自定義皮膚:
body
{
font-family:Verdana!important; /*Why is Verdana not being set as default font in the editor even though I have set important here? */
font-style:normal!important;
font-size:14px!important; /*Here too font size is not being set as 14 px and text appears smaller than 14 px */
}
h1,h2,h3,h4,h5
{
color:Black!important;
background-color:Transparent;
background-image:none!important;
font-weight:bold;
border-bottom:0px!important;
font-family:Segoe UI,Arial,Sans-serif;
cursor:default;
padding-left:0px;
padding-top:0px;
font: "Segoe UI",Arial,Sans-serif;
text-decoration:none;
}
h1{ font-size: 2em !important;}
h2{ font-size: 1.5em !important;}
h3{ font-size: 1.17em !important;}
h4{ font-size: 1em !important;}
h5{ font-size: .83em !important;}
h6{ font-size: .75em !important;}
我做的另一個變化是:
.CustomSkin.RadEditor .reContentCell
{
background-image:none !important;
background-color:White !important;
border: solid 1px #828282;
}
我已經設置了內容區域的背景的編輯爲白色,否則就是拾取主頁的背景圖片
我跟着this例如,使編輯看起來像一個文本框
http://demos.telerik.com/aspnet-ajax/editor/examples/editorastextbox/defaultcs.aspx
其工作正常,但我還是看到周圍EditorQues灰色的影子是RadEditor我的頁面上的文本。我該如何擺脫?
在我的網頁,你可以在上面看到的頭部另外,我還註釋掉如下: -
<%--<link href="http://www.example.com/Skins/CustomSkin/EditorAsTextBox.CustomSkin.css" rel="stylesheet" type="text/css" />
--%>
(編輯注:example.com是mysite.com之前編輯Info。)
我不得不這樣做,因爲如果我添加引用EditorAsTextBox。 CustomSkin。在前面的Css部分,EditorAns的工具欄的背景顏色(灰色)消失 並變爲白色。我不知道如何解決這個問題。
對不起,有很多問題。希望我能在這裏得到幫助。謝謝。
是的,我也這麼做.. .. ..現在就做那個..謝謝 – Serenity 2010-12-14 18:07:00