invisible: bool,
help: String,
value: String,
+ class: String,
to_load: bool,
to_save: bool,
to_render: bool,
fn get_value(&self) -> String;
fn set_value(&mut self, value: &str);
+ fn get_class(&self) -> String;
+ fn set_class(&mut self, value: &str);
+
fn get_to_load(&self) -> bool;
fn set_to_load(&mut self, to_load: bool);
self.field.value = String::from(value);
}
+ fn get_class(&self) -> String {
+ String::from(&self.field.class)
+ }
+
+ fn set_class(&mut self, value: &str) {
+ self.field.value = String::from(value);
+ }
+
fn get_to_load(&self) -> bool {
self.field.to_load
}
match f.field.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">
<label for="{{ name }}" class="form-label">{{ label }}</label>{% endif %}
- <input type="text" class="form-control{% if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}" {% if value %} value="{{ value | replace(from='"', to=""") }}" {% endif %} {% if disabled %} readonly {% endif %} {% if maxlen > 0 %}maxlength="{{ maxlen }}"{% endif %} {% if invisible %}style="display: none;"{% endif %}/>
+ <input type="text" class="form-control{% if help %} is-invalid{% endif %}{% if class %} {{class}}{% endif %}" name="{{ name }}" id="{{ name }}" {% if value %} value="{{ value | replace(from='"', to=""") }}" {% endif %} {% if disabled %} readonly {% endif %} {% if maxlen > 0 %}maxlength="{{ maxlen }}"{% endif %} {% if invisible %}style="display: none;"{% endif %}/>
{% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
{% if label %}</div>{% endif %}"#) {
Err(e) => { println!("{:?}", e) },
self.field.value = String::from(value);
}
+ fn get_class(&self) -> String {
+ String::from(&self.field.class)
+ }
+
+ fn set_class(&mut self, value: &str) {
+ self.field.value = String::from(value);
+ }
+
fn get_to_load(&self) -> bool {
self.field.to_load
}
match f.field.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">
<label for="{{ name }}" class="form-label">{{ label }}</label>{% endif %}
- <textarea class="form-control{%if help %} is-invalid{% endif %}" {% if maxlen > 0 %}maxlength="{{ maxlen }}"{% endif %}
+ <textarea class="form-control{%if help %} is-invalid{% endif %}{% if class %} {{class}}{% endif %}" {% if maxlen > 0 %}maxlength="{{ maxlen }}"{% endif %}
name="{{ name }}" id="{{ name }}" rows="{{ rows }}">{{ value | replace(from='"', to=""") }}</textarea>
{% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
{% if label %}</div>{% endif %}"#) {
self.field.value = String::from(value);
}
+ fn get_class(&self) -> String {
+ String::from(&self.field.class)
+ }
+
+ fn set_class(&mut self, value: &str) {
+ self.field.value = String::from(value);
+ }
+
fn get_to_load(&self) -> bool {
self.field.to_load
}
<label for="{{ name }}" class="form-label">{{ label }}</label><br/>{% endif %}
{% for o in options %}
<div class="form-check{% if help %} is-invalid{% endif %}">
- <input type="radio" class="form-check-input{% if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}_{{ loop.index }}" value="{{ o.value }}"{% if value == o.value %} checked{% endif %}/>
+ <input type="radio" class="form-check-input{% if help %} is-invalid{% endif %}{% if class %} {{class}}{% endif %}" name="{{ name }}" id="{{ name }}_{{ loop.index }}" value="{{ o.value }}"{% if value == o.value %} checked{% endif %}/>
<label class="form-label" for="{{ name }}_{{ loop.index }}">{{ o.label }}</label>
</div>
{% endfor %}
};
match f.field.tmpl.add_raw_template("field_single", r#"<div class="form-check{% if help %} is-invalid{% endif %}">
- <input type="radio" class="form-check-input{% if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}_{{ idx }}" value="{{ value }}"{% if checked != "" %} checked{% endif %}/>
+ <input type="radio" class="form-check-input{% if help %} is-invalid{% endif %}{% if class %} {{class}}{% endif %}" name="{{ name }}" id="{{ name }}_{{ idx }}" value="{{ value }}"{% if checked != "" %} checked{% endif %}/>
<label class="form-label" for="{{ name }}_{{ idx }}">{{ label }}</label>
</div>"#) {
Err(e) => { println!("{:?}", e) },
self.field.value = String::from(value);
}
+ fn get_class(&self) -> String {
+ String::from(&self.field.class)
+ }
+
+ fn set_class(&mut self, value: &str) {
+ self.field.value = String::from(value);
+ }
+
fn get_to_load(&self) -> bool {
self.field.to_load
}
match f.field.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">
<label for="{{ name }}" class="form-label">{{ label }}</label><br/>{% endif %}
- <select class="form-select{% if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}">
+ <select class="form-select{% if help %} is-invalid{% endif %}{% if class %} {{class}}{% endif %}" name="{{ name }}" id="{{ name }}">
{% for o in options %}
<option value="{{ o.value }}"{% if value == o.value %} selected{% endif %}>{{ o.label }}</option>
{% endfor %}
self.field.value = String::from(value);
}
+ fn get_class(&self) -> String {
+ String::from(&self.field.class)
+ }
+
+ fn set_class(&mut self, value: &str) {
+ self.field.value = String::from(value);
+ }
+
fn get_to_load(&self) -> bool {
self.field.to_load
}
f.field.to_render = true;
match f.field.tmpl.add_raw_template("field", r#"<div class="form-check">
- <input type="checkbox" class="form-check-input{% if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}" {% if value == "1" or value == "on" %}checked{% endif %}/>
+ <input type="checkbox" class="form-check-input{% if help %} is-invalid{% endif %}{% if class %} {{class}}{% endif %}" name="{{ name }}" id="{{ name }}" {% if value == "1" or value == "on" %}checked{% endif %}/>
{% if label %}<label for="{{ name }}" class="form-check-label">{{ label }}</label>{% endif %}
{% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
</div>"#) {
self.field.value = String::from(value);
}
+ fn get_class(&self) -> String {
+ String::from(&self.field.class)
+ }
+
+ fn set_class(&mut self, value: &str) {
+ self.field.value = String::from(value);
+ }
+
fn get_to_load(&self) -> bool {
self.field.to_load
}
f.field.label = String::from(name);
f.field.to_render = true;
- match f.field.tmpl.add_raw_template("field", r#"<button class="btn btn-primary" type="submit" name="{{ name }}" id="{{ name }}"
+ match f.field.tmpl.add_raw_template("field", r#"<button class="btn{% if class %} {{class}}{% endif %}" type="submit" name="{{ name }}" id="{{ name }}"
{% if form %}form="{{ form }}"{% endif %}>{{ label }}</button>"#) {
Err(e) => { println!("{:?}", e) },
_ => {},