Jaymer wroteya, their system is still screwed. here's what that test screen looked like.
[attachment=0]Screen Shot 2016-03-27 at 11.55.19 PM.png[/attachment]
This did not work for me:
config.config.height = 500;
config.config.itemHeight = 21;
Use ---- config.config.virtual = {itemHeight:26};
You can see the virtual config options here ... http://docs.telerik.com/kendo-ui/api/javascript/ui/dropdownlist#configuration-virtual
If you follow the form field widget configuration pattern below, you'll be able to figure most of these out ...
-The first config = Aware's reference to the field
-The second config = Aware's reference to the widget used to represent the field
-virtual = a widget feature with a variety of configuration attributes
-itemHeight = one of the settings of the virtual configuration
"config.config.height = 500" works because height is a configuration attribute of the widget itself. Because itemHeight is an attribute of the virtual feature settings it can't be referenced directly using config.config.
To get to any widget configuration that is deeper than "config.config.xxxxxx" use = {attribute: value}
Form fields/widget configuration is described in the programmer's reference on page 82, but it's not super clear. Hopefully the above helps bring some additional clarity.