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
Completed
Last Updated: 20 Jan 2016 16:48 by ADMIN
A possible workaround: take the PageProperties.ascx dialog and use it as an external dialog in your project and change the _setClass: function to

_setClass: function (element, cssClassHolder) { element.className = cssClassHolder.get_value(); } 
Completed
Last Updated: 01 Jun 2021 13:06 by ADMIN
Release R2 2017