0

同期中の新しいデータを確認できますか?

私はこれを持っています:

$('#order_it').click(function(){
    gridNewData.sync(); // this will send data to server
});

gridNewData の完了:

complete: function(xhr, textStatus) {
    if (textStatus == 'success') {
        orders.read(); // this will refresh orders, and grid too, a
        gridNewData.data([]); // empty that temp datasource
    }
}

と:

var orders = new kendo.data.DataSource({
    autoSync: false,
    transport: {
        read: {
            contentType: 'application/json',
            url: '/dokument/orders/',
            dataType: 'json',
            complete: function(xhr, textStatus) {

                // i think that here i need to get new synced items(or uids)

            }
        }
    },
    schema: {
        model: {
            id: 'id'
        }
    }
});

その行を別の色でグリッドに作成する必要がありますが、新しいデータを確認する方法が見つかりません。

4

1 に答える 1