]> saetta.ns0.it Git - rust/zakform/commitdiff
Field: to_load/save default to true.
authorAndrea Zagli <azagli@libero.it>
Sat, 4 Mar 2023 14:23:45 +0000 (15:23 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 4 Mar 2023 14:23:45 +0000 (15:23 +0100)
src/fields.rs

index 4e79e67517086c2a71e22dec00dedee3984aaa0b..251362cda397682374552f4c505d723326902253 100644 (file)
@@ -164,6 +164,8 @@ impl FieldText {
 
                f.field.name = String::from(name);
                f.field.label = String::from(name);
+               f.field.to_load = true;
+               f.field.to_save = true;
 
                match f.field.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">
  <label for="{{ name }}" class="form-label">{{ label }}</label>{% endif %}
@@ -299,6 +301,8 @@ impl FieldTextArea {
 
                f.field.name = String::from(name);
                f.field.label = String::from(name);
+               f.field.to_load = true;
+               f.field.to_save = true;
 
                f.rows = 5;
 
@@ -449,6 +453,8 @@ impl FieldRadio {
 
                f.field.name = String::from(name);
                f.field.label = String::from(name);
+               f.field.to_load = true;
+               f.field.to_save = true;
 
                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 %}
@@ -616,6 +622,8 @@ impl FieldSelect {
 
                f.field.name = String::from(name);
                f.field.label = String::from(name);
+               f.field.to_load = true;
+               f.field.to_save = true;
 
                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 %}
@@ -747,6 +755,8 @@ impl FieldCheck {
 
                f.field.name = String::from(name);
                f.field.label = String::from(name);
+               f.field.to_load = true;
+               f.field.to_save = 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 %}/>