SmartClient Version: v13.0p_2023-09-07/AllModules Development Only (built 2023-09-07)
Hello, I just noticed that the Calendar ignores fetchOperation, updateOperation, addOperation and removeOperation.
please try the test case here https://www-demos.smartclient.com/sm...&skin=Twilight
in the RPC tab you may see that the operationIds are never sent.
Hello, I just noticed that the Calendar ignores fetchOperation, updateOperation, addOperation and removeOperation.
please try the test case here https://www-demos.smartclient.com/sm...&skin=Twilight
Code:
// using a client-only dataSource so that test data is always relative to the current date isc.DataSource.create({ ID: "eventDS", fetchOperation: "foo", updateOperation: "bar", addOperation: "foobar", fields:[ {name:"eventId", primaryKey: true, type: "sequence"}, {name:"name"}, {name:"description"}, {name:"startDate", type: "datetime"}, {name:"endDate", type: "datetime"} ], clientOnly: true, testData: eventData }); isc.Calendar.create({ ID: "eventCalendar", startDate: eventData.getDataStartDate(), dataSource: eventDS, autoFetchData: true });
Comment