Default value: false
Determines whether the widget is disabled. If set to true, the control appears dimmed and does not respond when clicked.
Syntax
$(function () {
// Get value
var returnsValue; // Type: boolean
returnsValue = $(".selector").wijpager("option", "disabled");
// Set value
var newValue; // Type: boolean
$(".selector").wijpager("option", "disabled", newValue);
});
See Also