You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2020/04/07 16:47:21 UTC

[royale-asjs] branch develop updated: todomvc: remove CRUD beads no longer needed

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

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new c213e27  todomvc: remove CRUD beads no longer needed
c213e27 is described below

commit c213e27da47fc3ecd4bee44a5f1cb0d6fc467bbc
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Tue Apr 7 18:47:16 2020 +0200

    todomvc: remove CRUD beads no longer needed
---
 .../src/main/royale/jewel/todomvc/views/TodoListSection.mxml      | 8 +-------
 .../src/main/royale/jewel/todomvc/views/TodoListSection.mxml      | 8 +-------
 2 files changed, 2 insertions(+), 14 deletions(-)

diff --git a/examples/crux/todomvc-jewel-crux/src/main/royale/jewel/todomvc/views/TodoListSection.mxml b/examples/crux/todomvc-jewel-crux/src/main/royale/jewel/todomvc/views/TodoListSection.mxml
index 7dc2e12..74c7427 100644
--- a/examples/crux/todomvc-jewel-crux/src/main/royale/jewel/todomvc/views/TodoListSection.mxml
+++ b/examples/crux/todomvc-jewel-crux/src/main/royale/jewel/todomvc/views/TodoListSection.mxml
@@ -68,13 +68,7 @@ limitations under the License.
         <html:Section localId="main">
             <j:List localId="todolist" width="100%"
                 labelField="label" className="todo-list" 
-                dataProvider="{todoModel.listItems}">
-                <j:beads>
-                    <j:AddListItemRendererForArrayListData/>
-                    <j:RemoveListItemRendererForArrayListData/>
-                    <j:UpdateListItemRendererForArrayListData/>
-                </j:beads>
-            </j:List>
+                dataProvider="{todoModel.listItems}"/>
         </html:Section>
         
         <html:Footer className="footer" visible="{todoModel.footerVisibility}">
diff --git a/examples/jewel/todomvc/src/main/royale/jewel/todomvc/views/TodoListSection.mxml b/examples/jewel/todomvc/src/main/royale/jewel/todomvc/views/TodoListSection.mxml
index e1b2abb..54f29a4 100644
--- a/examples/jewel/todomvc/src/main/royale/jewel/todomvc/views/TodoListSection.mxml
+++ b/examples/jewel/todomvc/src/main/royale/jewel/todomvc/views/TodoListSection.mxml
@@ -79,13 +79,7 @@ limitations under the License.
         <html:Section localId="main">
             <j:List localId="todolist" width="100%"
                 labelField="label" className="todo-list" 
-                dataProvider="{todoModel.listItems}">
-                <j:beads>
-                    <j:AddListItemRendererForArrayListData/>
-                    <j:RemoveListItemRendererForArrayListData/>
-                    <j:UpdateListItemRendererForArrayListData/>
-                </j:beads>
-            </j:List>
+                dataProvider="{todoModel.listItems}"/>
         </html:Section>
         
         <html:Footer className="footer" visible="{todoModel.footerVisibility}">