This is an automated email from the ASF dual-hosted git repository.

thiagohp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/master by this push:
     new ac5edee  Fixing adding_new_columns_to_grid_programattically for 
TAP5-2689
ac5edee is described below

commit ac5edee3008e581e162b4a673af52742723ef3f8
Author: Thiago H. de Paula Figueiredo <[email protected]>
AuthorDate: Fri Dec 10 22:48:28 2021 -0300

    Fixing adding_new_columns_to_grid_programattically for TAP5-2689
---
 .../apache/tapestry5/integration/app1/pages/AddedGridColumnsDemo.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/AddedGridColumnsDemo.java
 
b/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/AddedGridColumnsDemo.java
index 5b0ec2c..1e74365 100644
--- 
a/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/AddedGridColumnsDemo.java
+++ 
b/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/AddedGridColumnsDemo.java
@@ -50,7 +50,7 @@ public class AddedGridColumnsDemo
 
         model.addEmpty("viewlink");
 
-        model.add("title.length()").label("Title Length");
+        model.addExpression("titlelength", "title.length()").label("Title 
Length");
 
         // This is to test the case where there's no property conduit or 
override block.
 

Reply via email to