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![]
}
}
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);
}