Suppose I have a jqxgrid and it s displaying data in the table from Table A.
For eg:
Table A
companyId , companyName
Now, I want to display a third column in the jqxgrid and the column name will be companyAddress. However, this column is not in the Table A so I need to refer to Table B which is following
Table B.
id , companyAddress
In the jqxgrid, I want to have the following columns
companyId, companyName and companyAddress
I can have an Ajax call to get first two columns from Table A. Is it possible to have a separate Ajax call just for the third column which is companyAddress based on the companyId? (where companyId n TableA = id in Table B). I don’t want to join them and combine them as an array or json object but I was wondering if it’s possible to achieve what I asked above?