Pivot table fields configuration

Hi,

is it possible to make vertical scroll to Fields column in Pivot configuration window. When one check this example

http://docs.webix.com/samples/61_pivot/03_table_api/01_cell_styling.html

he can see that there are only 5 fields which is nice, but I have 26 and they disappear because there is no scroll.

Hi,

please try the following:

$$("pivot").attachEvent("onPopup",function(popup){
	popup.$$("fields").define("scroll",true);
});

THis works. Thank you. I was missing latest pivot.js file but now when I have it, everything is good. Thanks a lot.