Added readonly extension for input elements.
This commit is contained in:
parent
eb3ed065a2
commit
edfac3782f
@ -913,7 +913,7 @@ class IgniteTemplate {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a disabled attribute and class to this template.
|
* Adds a disabled attribute and class to this template.
|
||||||
* @param {Boolean|IgniteProperty} value A value to determine whether or not the element should be marked as disable dor not.
|
* @param {Boolean|IgniteProperty} value A value to determine whether or not the element should be marked as disable or not.
|
||||||
* @param {*} converter Optional function that can convert the value if needed.
|
* @param {*} converter Optional function that can convert the value if needed.
|
||||||
* @returns {IgniteTemplate} This ignite template so function calls can be chained.
|
* @returns {IgniteTemplate} This ignite template so function calls can be chained.
|
||||||
*/
|
*/
|
||||||
@ -944,6 +944,39 @@ class IgniteTemplate {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds a readonly attribute and class to this template.
|
||||||
|
* @param {Boolean|IgniteProperty} value A value to determine whether or not the element should be marked as readonly or not.
|
||||||
|
* @param {*} converter Optional function that can convert the value if needed.
|
||||||
|
* @returns {IgniteTemplate} This ignite template so function calls can be chained.
|
||||||
|
*/
|
||||||
|
readonly(value, converter = null) {
|
||||||
|
if (value instanceof IgniteProperty) {
|
||||||
|
this.attribute("readonly", value, convert => {
|
||||||
|
convert = (converter != null ? converter(convert) : convert);
|
||||||
|
if (convert) {
|
||||||
|
return "readonly";
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
this.class(value, convert => {
|
||||||
|
convert = (converter != null ? converter(convert) : convert);
|
||||||
|
if (convert) {
|
||||||
|
return "readonly";
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else if (value) {
|
||||||
|
this.attribute("readonly", "readonly");
|
||||||
|
this.class("readonly");
|
||||||
|
}
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the type attribute of the element to be constructed by this template.
|
* Sets the type attribute of the element to be constructed by this template.
|
||||||
* @param {String|IgniteProperty} value The value to set for the type attribute of the element this template will construct.
|
* @param {String|IgniteProperty} value The value to set for the type attribute of the element this template will construct.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user