How do I connect a django rest framework json query result to dgrid/OnDemandGrid
问题 My JSON store (django rest framework) returns keys for "count", "next", "previous", and "results". "count" is the number of rows available. "next" is the url for the next page of results (e.g. ids 26-50). "previous" is the url for the previous page of results (null in this case since this is the first page of results). The "results" key contains the actual data objects I'd like to display in the OnDemandGrid. How do I connect the "results" key data collection to the grid? Thank you for your