I have this -

t:type="grid" source="items" t:model="beanModel"

and

        public BeanModel getBeanModel() {
                BeanModel model = beanModelSource.createDisplayModel(Item.class,
                                messages);
                PropertyModel nameColumn = model.getById("lastUpdated");
                nameColumn.sortable(true);
                ((Grid)model).getSortModel().updateSort("lastUpdated");
                return model;
        }

But it does not work/sort after I insert the row. Any idea what I might be
missing?



--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Grid-display-after-a-new-row-insertion-tp4715298p4716188.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to