jpclair

Results 3 issues of jpclair

Hi, Several exercises (and solutions) are defined with arrow functions. the exercise "decorate" for example: ``` seneca.decorate('stamp', (pattern) => { console.log(Date.now(), pattern) }) ``` Several exercises use templates strings, the...

enhancement

Hi, I am tryin to customize a DataGrid, with your base example: ``` $grid->row(function ($row) { if ($row->cell('public')->value < 1) { $row->cell('title')->style("color:Gray"); $row->style("background-color:#CCFF66"); } }); ``` I need to add...