]> saetta.ns0.it Git - rust/zakform/commitdiff
Added text property for FieldCheck.
authorAndrea Zagli <azagli@libero.it>
Fri, 10 May 2024 10:15:21 +0000 (12:15 +0200)
committerAndrea Zagli <azagli@libero.it>
Fri, 10 May 2024 10:15:21 +0000 (12:15 +0200)
src/fields.rs

index 4eee14a338b221530f9f42705b63a96c6a1375f1..841f2ad3aa76fa2257a146c9129746a8e552ffc1 100644 (file)
@@ -914,6 +914,7 @@ _ => {},
 #[derive(Default)]
 pub struct FieldCheck {
        field: Field,
+       text: String,
 }
 
 impl TField for FieldCheck {
@@ -1040,6 +1041,7 @@ impl TField for FieldCheck {
                context.insert("help", &self.field.help);
                context.insert("class", &self.field.class);
                context.insert("value", &self.field.value);
+               context.insert("text", &self.text);
                s.push_str(self.field.tmpl.render("field", &context).unwrap().as_str());
 
                s
@@ -1064,17 +1066,28 @@ impl FieldCheck {
                f.field.to_save = true;
                f.field.to_render = true;
 
-               match f.field.tmpl.add_raw_template("field", r#"<div class="form-check">
+               match f.field.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">
+ <label for="{{ name }}" class="form-label">{{ label }}</label>{% endif %}
+ <div class="form-check">
  <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 text %}<label for="{{ name }}" class="form-check-label">{{ text }}</label>{% endif %}
  {% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
- </div>"#) {
+ </div>
+ {% if label %}</div>{% endif %}"#) {
 Err(e) => { println!("{:?}", e) },
 _ => {},
 };
 
                f
        }
+
+       pub fn get_text(&self) -> String {
+               String::from(&self.text)
+       }
+
+       pub fn set_text(&mut self, text: &str) {
+               self.text = String::from(text);
+       }
 }
 
 #[derive(Default)]