Hi all,
I've just installed CKEditor.NET and i'm using asp.NET with VB. The Editor is showing and working fine however all my attempt to configure it are not taken in account.
Here is the code and a default (all buttons) toolbar is displayed:
Any advice welcome, thanks,
Philippe.
I've just installed CKEditor.NET and i'm using asp.NET with VB. The Editor is showing and working fine however all my attempt to configure it are not taken in account.
Here is the code and a default (all buttons) toolbar is displayed:
<CKEditor:CKEditorControl ID="FCKEditorTxt" runat="server" UIColor="#BFEE62" ResizeEnabled ="false" Width="600px" Height="480px" ContentsLangDirection="Ltr" DefaultLanguage ="en-gb" ContentsLanguage="fr" Language="fr" ContentsCss="Default.css" Toolbar = "Basic" ></CKEditor:CKEditorControl>
Any advice welcome, thanks,
Philippe.

Re: VB.NET inline configuration
I've tried to configure it from the .asp.vb file. Still no change. The full toolbar is displayed.
Here is the code:
Dim fck As CKEditor.NET.CKEditorControl fck = FormView1.FindControl("FCKeditorTxt") fck.Text = mylblTxt.Text fck.UIColor = Drawing.Color.Bisque fck.ResizeEnabled = False fck.ToolTip = "Tooltip text ..." fck.Toolbar = "Basic"Have a nice day,
Philippe.
Re: VB.NET inline configuration
CKEDITOR.editorConfig = function( config ) { config.toolbar = 'MyToolbar'; config.toolbar_MyToolbar = [ ['NewPage','Preview'], ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Scayt'], ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'], '/', ['Styles','Format'], ['Bold','Italic','Strike'], ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'], ['Link','Unlink','Anchor'], ['Maximize','-','About'] ]; };Re: VB.NET inline configuration
Ok for this workaround. However what is the point to have done a CKEditor specialy for .Net with nice intellisense in Visual Studio if the parameters are not taken in account ?
Is it working only with C# ?
Regards,
Philippe.
Re: VB.NET inline configuration
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: VB.NET inline configuration
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: VB.NET inline configuration
Re: VB.NET inline configuration