From 58562be1a53787789063a0f636b4e82284dca37d Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Mon, 2 Jan 2023 16:20:44 +0100 Subject: [PATCH] Exmaple: grid now returns html. --- examples/grid.rs | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) 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)) } -- 2.49.0