I'm sorry I'm about to ask a really lazy question...
The data for my grid is coming from two remote sources, each providing data in json suitable for dataModel.data. The first source populates the left side of my grid and the second source populates further detail on the right side of the grid. The sources share a common data element which I use in the first column.
Do you have any method in your grid functions which automatically merges two json sources that share a common data element such as "id", or must I loop through each row, finding a match then merging using something like .extend?
Many thanks. Again, sorry for asking such a lazy question