From: Andrea Zagli Date: Mon, 2 Jan 2023 15:20:44 +0000 (+0100) Subject: Exmaple: grid now returns html. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=58562be1a53787789063a0f636b4e82284dca37d;p=rust%2Fzakgrid Exmaple: grid now returns html. --- diff --git a/examples/grid.rs b/examples/grid.rs index 683deac..c255fe4 100644 --- a/examples/grid.rs +++ b/examples/grid.rs @@ -47,10 +47,13 @@ async fn index( let mut s = String::new(); + s.push_str(""); + s.push_str(""); + let mut col = zakgrid::Column::new("col name"); - s.push_str(format!("column added: {}\n", col.name()).as_str()); + 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()); + s.push_str(format!("column changed title: {}
\n", col.title()).as_str()); grid.add_column(col); let mut col = zakgrid::Column::new("col2 name"); @@ -60,11 +63,17 @@ async fn index( let cols = grid.columns(); for (i, v) in cols.iter().enumerate() { - s.push_str(format!("col {} title {}\n", i, v.title()).as_str()); + s.push_str(format!("col {} title {}
\n", i, v.title()).as_str()); } + s.push_str("

\n"); + s.push_str("\n"); let header = grid.header(); s.push_str(header.as_str()); + s.push_str("
\n"); + + s.push_str("\n"); + s.push_str("\n"); Ok(HttpResponse::Ok().body(s)) }