rte

Problems with html RTE Editor in TYPO3 7.6 with Safari Browser

喜欢而已 提交于 2021-01-29 19:52:56
问题 I'm using TYPO3 7.6.32 where I have a problem with my editor in the backend with the Safari browser. In all other browsers this does not appear. Does anyone know this problem and know how to fix it? This is the screenshot of the backend in the Safari browser: Best Regard 回答1: Since the release of Chrome 73 the Rich Text Editor (RTE) of TYPO3 is broken. Safari and Chrome both use webkit as basis so I assume, the problem is the same. Since TYPO3 7.6 is End of Life (EOL) since end of November

TYPO3 9.5.4 CKEditor RTE deletes style attributes

Deadly 提交于 2021-01-28 18:44:08
问题 I updated a TYPO3 website from 7->8->9. Now the problem is that the RTE CKEditor keeps deleting style attributes and even styles. So and old Element with content: <div class="mobilr"> <table height="655" width="972" style="vertical-align: middle; background-color: rgb(255, 255, 255); border-style: solid; border-color: rgb(187, 187, 187);" class="centertable"> <tbody> <tr style="vertical-align: middle;"> <td> <p> </p> .... is loaded in the editor as: <table class="centertable" style="height

YUI editor (RTE): How to wrap selection with a <span> and NOT lose formatting?

空扰寡人 提交于 2020-01-25 07:19:07
问题 Ok so I've got a problem I've been working on for the last week or so and have tried everything I know or could find. I am using YUI 2.x editor where users will be doing some heavy formatting. I have an external button on the page that needs to wrap the selected text in a <span> when the user clicks it, but it must do this without loosing any formatting. For some reason doing the following likes to erase all of the formatting in the selection: var sel = myEditor._getSelection(); var newEl = '

What is the right configuration for the RTE to show my own CSS classes as selection?

风格不统一 提交于 2020-01-02 09:17:28
问题 The configuration of the RTE changes with each (big) version. Now I have my first 7.6 installation where I need to configure the RTE so editors can have special classes for paragraphs, spans or tables. e.g. the editor should be able to select the default styles of bootstrap for tables: table-striped, table-bordered I don't use an old configuration from a 6.2 installtion but created it anew from documentation. I use a site extension and include the TSconfig in ext_localconf.php with \TYPO3\CMS

LoadRunner RTE Protocal.The main scenrio is total we have 1000 set of data

做~自己de王妃 提交于 2019-12-25 16:48:09
问题 The main scenrio is total we have 1000 set of data...Total data should consume in 60 min..But The high priority with in 10 min 500 data should consume,rest 50 min remaining 500 data should consume..How can we handle this,can anyone give me solution or ideas in this..Thanks in advance 回答1: Schedule two groups with different numbers of users and pacing. Time your first group to handle your 500 consumption in 10 minutes and your second group to fire at the conclusion of your first group. This is

Sitecore not resolving rich text editor URLS in page renders

我的梦境 提交于 2019-12-24 09:38:13
问题 We're having issues inserting links into rich text in Sitecore 6.1.0. When a link to a sitecore item is inserted, it is outputted as: http://domain/~/link.aspx?_id=8A035DC067A64E2CBBE2662F6DB53BC5&_z=z Rather than the actual resolved url: http://domain/path/to/page.aspx This article confirms that this should be resolved in the render pipeline: in Sitecore 6 it inserts a specially formatted link that contains the Guid of the item you want to link to, then when the item is rendered the special

Underline format problem

时光总嘲笑我的痴心妄想 提交于 2019-12-22 08:05:48
问题 According to the documentation i would like to overwrite predefined formats using this settings: formats: { bold : {inline : 'b' }, italic : {inline : 'i' }, underline: { inline: 'u' } }, I insert "this is a text" into the editor and press the underline-button. This is the result (this gets saved to database too): <p>thi<span style="text-decoration: underline;">s is a t</span>ext</p> Why do i get no u-tags, but the predefined span with underlined style? How do i get my lovely u-tags here?

How use Eclipse as a Javascript IDE?

强颜欢笑 提交于 2019-12-21 04:35:24
问题 I downloaded the eclipse Javascript IDE from the official download page however, when i start the application it says "A Java Runtime Environment or Java development Kit must be available in order to run eclipse." I already have a java IDE copy of eclipse that runs fine so I don't understand why its asking for another JDK. I just want to develop Javascript in Eclipse, does anyone have any idea how to? Are there special tools or plugins i'm meant to get to get it to work? 回答1: For best

jquery listen for events in an iframe

和自甴很熟 提交于 2019-12-20 20:07:10
问题 I'm making a very simple Rich Text Editor using jquery... I don't want to use a third-party one. I need to listen for events within an iframe (same domain etc), starting with typing. Apparently I'll need to use bind() a lot. This is what I've got at the moment which works fine in IE8 (amazingly enough) but not Chrome. <script> $(function() { $('#text').contents().bind("keyup keydown keypress", function(e) { var code = e.keyCode || e.which; alert(code); return false; }); }); </script> <body>

TinyMce editor not returning tags

浪尽此生 提交于 2019-12-14 02:33:52
问题 H7i guys, I am having a weird problem with the TinyMce editor. What I am trying to do is to select some text, click a button and append a tag at the start and at the end. For example, if the original text is <p>hello</p> , the end text would be <myTag><p>hello</p></myTag> . It works fine but when selecting a single line of text the existing tags are not returned. So in the previous example I would get hello only and not <p>hello</p> . When I select multiple lines it returns the tags. Here is