s.push_str(format!("after: {}\n", grid.header_tmpl).as_str());
let mut col = zakgrid::Column::new("col name");
+ s.push_str(format!("column added: {}\n", col.name()).as_str());
+ col.set_title("the column title");
+ s.push_str(format!("column changed title: {}\n", col.title()).as_str());
+ grid.add_column(col);
- s.push_str(format!("column added: {}", col.name()).as_str());
+ let mut col = zakgrid::Column::new("col2 name");
+ col.set_title("the second column title");
+ grid.add_column(col);
+
+ let cols = grid.columns();
+
+ for (i, v) in cols.iter().enumerate() {
+ s.push_str(format!("col {} title {}\n", i, v.title()).as_str());
+ }
Ok(HttpResponse::Ok().body(s))
}
pub fn name(&self) -> String {
format!("{}", self.name)
}
+
+ pub fn set_title(&mut self, title: &str) {
+ self.title = String::from(title);
+ }
+
+ pub fn title(&self) -> String {
+ format!("{}", self.title)
+ }
}
pub struct Grid {
columns: vec![]
}
}
+
+ pub fn add_column(&mut self, col: Column) {
+ self.columns.push(col);
+ }
+
+ pub fn columns(&self) -> &Vec<Column> {
+ &self.columns
+ }
}