]> saetta.ns0.it Git - rust/zakgrid/commitdiff
Setting row template.
authorAndrea Zagli <azagli@libero.it>
Mon, 2 Jan 2023 15:44:13 +0000 (16:44 +0100)
committerAndrea Zagli <azagli@libero.it>
Mon, 2 Jan 2023 15:44:13 +0000 (16:44 +0100)
src/lib.rs

index 5cf721a05bfa63bccd8778a90113761a977692eb..8025e2a5ad6e265e25820cb477763bbfc2c71aeb 100644 (file)
@@ -67,8 +67,8 @@ impl Grid {
                Grid {
                        header_tmpl: String::from("<tr>\n{{ row }}</tr>\n"),
                        header_row_tmpl: String::from("\t<th{% if align == \"Center\" %} align='center'{% elif align == \"Right\" %} align='right'{% endif %}>{{ title }}</th>\n"),
-                       row_tmpl: String::new(),
-                       row_col_tmpl: String::new(),
+                       row_tmpl: String::from("<tr>\n{{ row }}</tr>\n"),
+                       row_col_tmpl: String::from("\t<td{% if align == \"Center\" %} align='center'{% elif align == \"Right\" %} align='right'{% endif %}>{{ value }}</td>\n"),
                        columns: vec![]
                }
        }
@@ -81,6 +81,14 @@ impl Grid {
                self.header_row_tmpl = tmpl;
        }
 
+       pub fn set_row_tmpl(&mut self, tmpl: String) {
+               self.row_tmpl = tmpl;
+       }
+
+       pub fn set_row_col_tmpl(&mut self, tmpl: String) {
+               self.row_col_tmpl = tmpl;
+       }
+
        pub fn add_column(&mut self, col: Column) {
                self.columns.push(col);
        }