Completed
Last Updated: 30 Nov 2015 09:08 by Lee
ADMIN
Konstantin Dikov
Created on: 20 Dec 2013 13:01
Category: UI for ASP.NET AJAX
Type: Feature Request
0
RadPivotGrid - PivotGridRowField CellStyle-Width properties are not correctly applied when vertical scrolling is enabled

		
3 comments
Lee
Posted on: 05 Jun 2015 06:58
Yes, I also need this fixed please
Weston
Posted on: 29 May 2014 21:09
Has there been any progress made on this issue?
ADMIN
Konstantin Dikov
Posted on: 20 Dec 2013 13:02
Workaround:

function pageLoad() {
	var pivot = $find("<%=RadPivotGrid1.ClientID%>");
	var colgroup = pivot.get_rowHeaderTable().getElementsByTagName("colgroup")[0];
	var lastCol = colgroup.children[colgroup.children.length - 1];
	colgroup.removeChild(lastCol);
	colgroup.insertBefore(lastCol, colgroup.firstChild);
}