Completed
Last Updated: 07 Jun 2016 07:34 by ADMIN
Take a look at www.pasteboard.co/. It works fine in all major browsers except for IE.

Image content is inserted right in the image tag like: <IMG SRC="data:image/png;base64,...">, and that's exactly what we need. We don't even need the pasted images to be uploaded to the server side.

It seems www.pasteboard.co/ doesn't rely on the canvas element. You can remove it, and everything will work fine. Please see http://screencast.com/t/8IHQfHvq0e.

Also please see www.snag.gy. It doesn't contain a canvas, but still works well.

You can also take a look at strd6.com/2011/09/html5-javascript-pasting-image-data-in-chrome. It doesn't look great because it works in Chrome only. But still it works in Chrome.
Completed
Last Updated: 20 Jan 2016 16:38 by ADMIN
ADMIN
Created by: Rumen
Comments: 1
Category: Editor
Type: Feature Request
0
Currently, it is possible to align an image using the Justify Tools of RadEditor in IE, Chrome, Safari and Opera, but not in Firefox. In addition the content produced in the different browsers is different.
Completed
Last Updated: 29 Apr 2022 14:42 by ADMIN
ADMIN
Created by: Rumen
Comments: 2
Category: Editor
Type: Feature Request
11

			
Unplanned
Last Updated: 27 Apr 2016 12:22 by Jason

Created a table. Go to accessibility, checked 1 for both the header row and column & checked the associated cells with headers checkbox. ... This is the code that get's spit out.

 

Copy Code

<table style="width: 50%; " class="tableData">

<thead><tr>

<th style="" id="table_heading_0"> </th>

<th style="" id="table_heading_1">2011</th>

<th style="" id="table_heading_2">2012</th>

</tr></thead>

<tbody><tr>

<th style="" id="table_heading_3">Fire</th>

<td headers="table_heading_1">5</td>

<td class="" style="" headers="table_heading_2">5</td>

</tr><tr>

<th style="" id="table_heading_4">Police</th>

<td headers="table_heading_1">5</td>

<td headers="table_heading_2">5</td>

</tr></tbody></table>

 

Each header is assigned a unique ID (Correct!)

Each header is identified with a <th> class (Correct!)

Each non-header cell associates with just ONE header (INCORRECT! ... I assume)

 

Since there are two headers associated with each non-header cell, shouldn't there should be two IDs referenced in the "headers" attribute? Would the correct coding for this look something like this (each header ID separated by a space or comma)?

 

Copy Code

<table style="width: 50%; " class="tableData">

<thead><tr>

<th style="" id="table_heading_0"> </th>

<th style="" id="table_heading_1">2011</th>

<th style="" id="table_heading_2">2012</th>

</tr></thead>

<tbody><tr>

<th style="" id="table_heading_3">Fire</th>

<td headers="table_heading_1,table_heading_3">5</td>

<td class="" style="" headers="table_heading_2,table_heading_3">5</td>

</tr><tr>

<th style="" id="table_heading_4">Police</th>

<td headers="table_heading_1,table_heading_4">5</td>

<td headers="table_heading_2,table_heading_4">5</td>

</tr></tbody></table>


			
Declined
Last Updated: 07 Jun 2016 11:17 by ADMIN
ADMIN
Created by: Dobromir
Comments: 1
Category: Editor
Type: Feature Request
2

			
Completed
Last Updated: 14 Oct 2015 12:36 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Editor
Type: Bug Report
0

			
Completed
Last Updated: 03 May 2016 13:26 by ADMIN
The get_text() client side function of the editor seems to append a newline character to the retrieved text. This had the effect of breaking a string comparison I had to clear placeholder text ('enter detailed text here') when the user clicks on the content area. The problem is apparent only on Chrome and Safari, but not IE.

I fixed this problem by removing the trailing newline character using a regular expression:

var t = editor.get_text();
t = t.replace(/\n/g, "")
....then do the string comparison

The problem appeared in version 2012.2 912.
Completed
Last Updated: 18 Apr 2022 09:34 by ADMIN
Release R2 2022
Completed
Last Updated: 29 Nov 2021 08:42 by ADMIN
Declined
Last Updated: 26 Nov 2015 16:39 by ADMIN
Declined
Last Updated: 26 Nov 2015 16:08 by ADMIN
Completed
Last Updated: 20 Mar 2014 09:44 by ADMIN
Declined
Last Updated: 21 Jun 2022 15:13 by ADMIN
Completed
Last Updated: 01 Jun 2021 14:41 by ADMIN
Release Q1 2016
Completed
Last Updated: 20 Jan 2016 16:51 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: Editor
Type: Bug Report
4

			
Declined
Last Updated: 02 Mar 2022 13:24 by ADMIN
ADMIN
Created by: Stanimir
Comments: 1
Category: Editor
Type: Feature Request
0

			
Completed
Last Updated: 01 Jun 2021 13:02 by ADMIN
Release Q2 2014