I have added to my form a change to my save button if any (various) inputs are changed.
this works for the textboxes, textareas ,comboboxes
but not dropdownlists changes.
$(document).ready(
function
() {
$(
"input,select,textarea"
).change(
function
() {
$(
"#<%=btnSaveDataFull.clientid %>"
).addClass(
'SkinPulgin_button_update'
);
});
});
this works for the textboxes, textareas ,comboboxes
but not dropdownlists changes.