Default value: 5
A value specifies the maximum number of items that will be displayed if the autoSize option is also set to true.
Syntax
$(function () {
// Get value
var returnsValue; // Type: number
returnsValue = $(".selector").wijlist("option", "maxItemsCount");
// Set value
var newValue; // Type: number
$(".selector").wijlist("option", "maxItemsCount", newValue);
});
var maxItemsCount : number;
See Also