get Get the valuet

$("input").sMonthPicker('get');

reset Restore initial configurations

$("input").sMonthPicker('reset');

destroy Destroy a Super Month Picker completely

$("input").sMonthPicker('destroy');

disabled Disabled a Super Month Picker

// get
$("input").sMonthPicker('disabled');
// set
$("input").sMonthPicker('disabled', true);

startDate Set or get the value of the startDate

// get
$("input").sMonthPicker('startDate');
// set
$("input").sMonthPicker('startDate', false);

endDate Set or get the value of the endDate

// get
$("input").sMonthPicker('endDate');
// set
$("input").sMonthPicker('endDate', new Date());




monthsName Set or get the value of the monthsName

// get
$("input").sMonthPicker('monthsName');
// set
$("input").sMonthPicker('monthsName', ['Jan', 'Fev', 'Mar', ..., 'Nov', 'Dez']);

min Set or get the value of the min

// get
$("input").sMonthPicker('min');
// set
$("input").sMonthPicker('min', '01-2018');

max Set or get the value of the max

// get
$("input").sMonthPicker('max');
// set
$("input").sMonthPicker('max', '11-2018');

changeMonth Set or get the value of the changeMonth

// get
$("input").sMonthPicker('changeMonth');
// set
$("input").sMonthPicker('changeMonth', false);




changeYear Set or get the value of the changeYear

// get
$("input").sMonthPicker('changeYear');
// set
$("input").sMonthPicker('changeYear', false);

btnOk Set or get the value of the btnOk

// get
$("input").sMonthPicker('btnOk');
// set
$("input").sMonthPicker('btnOk', 'Test ok');

btnCancel Set or get the value of the btnCancel

// get
$("input").sMonthPicker('btnCancel');
// set
$("input").sMonthPicker('btnCancel', 'Close');

theme Set or get the value of the theme

// get
$("input").sMonthPicker('theme');
// set
$("input").sMonthPicker('theme', 'uikit');