org.jbpm.designer.public.lib.jeditable.autogrow.js Maven / Gradle / Ivy
$.editable.addInputType('autogrow', {
element : function(settings, original) {
var textarea = $('');
if (settings.rows) {
textarea.attr('rows', settings.rows);
} else {
textarea.height(settings.height);
}
if (settings.cols) {
textarea.attr('cols', settings.cols);
} else {
textarea.width(settings.width);
}
$(this).append(textarea);
return(textarea);
},
plugin : function(settings, original) {
$('textarea', this).autogrow(settings.autogrow);
}
});
© 2015 - 2025 Weber Informatics LLC | Privacy Policy