};
use quick_xml::de::from_str;
-use serde::Deserialize;
use serde_derive::Deserialize;
use clap::Parser;
#[serde(rename = "to-save")]
pub to_save: String,
pub accept: String,
- pub inline: String,
#[serde(rename = "option")]
pub options: Vec<ZakFormElementSelectOption>,
if let Some(l) = e.label {
if l != "" {
- writeln!(output, r#"fi.set_label("{}")"#, l);
+ writeln!(output, r#"fi.set_label("{}");"#, l);
}
}
+ if e.default_value != "" {
+ writeln!(output, r#"fi.set_value("{}");"#, e.default_value);
+ }
+
if e.max_length > 0 {
- writeln!(output, "fi.set_maxlen({})", e.max_length);
+ writeln!(output, "fi.set_maxlen({});", e.max_length);
}
if e.rows > 0 {
- writeln!(output, "fi.set_rows({})", e.rows);
+ writeln!(output, "fi.set_rows({});", e.rows);
}
match e.format {
};
if e.placeholder != "" {
- writeln!(output, r#"fi.set_placeholder("{}")"#, e.placeholder);
+ writeln!(output, r#"fi.set_placeholder("{}");"#, e.placeholder);
}
if e.class != "" {
- writeln!(output, r#"fi.set_class("{}")"#, e.class);
+ writeln!(output, r#"fi.set_class("{}");"#, e.class);
}
for option in e.options {
}
if e.editable == "FALSE" {
- writeln!(output, "fi.set_disabled(true)");
+ writeln!(output, "fi.set_disabled(true);");
}
if e.to_load == "FALSE" {
- writeln!(output, "fi.set_to_load(false)");
+ writeln!(output, "fi.set_to_load(false);");
}
if e.to_save == "FALSE" {
- writeln!(output, "fi.set_to_save(false)");
+ writeln!(output, "fi.set_to_save(false);");
}
- if e.inline == "TRUE" {
- writeln!(output, "fi.set_inline(true)");
+ if e.zakcgi_inline == "TRUE" {
+ writeln!(output, "fi.set_inline(true);");
}
if e.accept != "" {
- writeln!(output, r#"fi.set_accept("{}")"#, e.accept);
+ writeln!(output, r#"fi.set_accept("{}");"#, e.accept);
}
for filter in e.filters {
_ => { },
};
},
- }
+ _ => { },
+ };
}
for validator in e.validators {