|
Search
You searched for the word(s):
< 1 second(s)
-
I can read the css files with StreamReader. What do I do with the stream?
But why isn't it possible to simply state an absolute path to any file that's required, such as a css file, or image gallery?
-
I've been working on integrating Cute Editor within a test website all week, and I'm finding a few seriously frustrating points, mainly to do with virtual paths. One of the main issues is that I need to be able to use absolute paths, as well as relative paths, for areas such as Image Editor, Image Library, Style Sheets, config files, ...
-
I've also found issue with the Images path,
SetSecurityImageGalleryPath
which also won't work without a virtual path. Can I work around that?
I don't want to be stuck with having to use virtual paths, because a user of the control may wish to specify image libraries and/or style sheets from other locations away from own ...
-
But I want the CssClass drop down to auto-parse the elements of the style sheet. If it won't, how do I accomplish that without manually adding css classes to the drop down?
-
Hi,
I want to be able to use a style sheet using an absolute path, not a virtual path. Is this possible:
Editor1.EditorWysiwygModeCss = ''http://www.mysite.com/styles/styles.css'';
Using the above gives me errors. Is there another way?
Thanks.
-
Adam,
you posted a solution to a problem raised a few days ago by GarryDune, who was looking to use a textbox instead of text area. The solution you posted was:
http://cutesoft.net/example/RenderASTextBox.aspx
I also need to use Cute Editor as a single line text box, but the above solution does not seem to work. If you ...
-
Actually,
the best idea would be to have a plain old multi-line text box replace the HTML editor window for plain text editing, but still enabling some of the editor features such as Code Snippets to work with the plain text box. Then no conversion of text would have to take place at all.
Gerardicus
-
Hi Adam,
thanks for the reply. In the mean time, I've used the following to remove any extra html not wanted:
string plainbody = Editor1.PlainTextWithLinefeeds;string stripped = plainbody.Replace(''<br> &nbsp;'', ''<br>'');stripped = stripped.Replace('' &nbsp;'', '''');stripped = stripped.Replace(''&nbsp; '', ...
-
Hi,
The Editor1.PlainTextWithLineFeeds returns line feeds as
<br>&nbsp;
together with a trailing space character. This is causing problems when trying to use Cute Editor to lay out plain text documents such as for email systems. The idea of plain text with a line feed is great, but why does it have to have ...
-
Hi,
The CSS style element of an HTML document is ignored in Cute. For example, if I put in HTML like this:
<html> <head> <style type=''text/css''> body ...
|
|
|