Using SmartClient 13 LGPL (one of the latest versions), I have created a grid using a global data source instance "CUSTOMERS_DS". When the grid is displayed, its "data" property (a ResultSet instance) has a "localData" property with length 25 and a "allRows" property with length 25.
I also have a ValuesManager linked to several DynamicForms with that same global data source instance "CUSTOMERS_DS". When I save a new record via valuesManager.submit(), the length of the "localData" property of the result set becomes 1. The "allRows" property of the result set is 26. The grid only shows the created record.
If I create a second record, localData increases to 2 and allRows to 26.
Any idea what I could be doing wrong?
I also have a ValuesManager linked to several DynamicForms with that same global data source instance "CUSTOMERS_DS". When I save a new record via valuesManager.submit(), the length of the "localData" property of the result set becomes 1. The "allRows" property of the result set is 26. The grid only shows the created record.
If I create a second record, localData increases to 2 and allRows to 26.
Any idea what I could be doing wrong?
Comment