ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: ONEITSS on October 24, 2016, 01:47:10 am
-
Hi,
I have a column in grid, and i have custom array with data, is there any way i can findout missing items in grid from given arrary.
Example:
Grid column H.No = A1,B1,C1,F1
custom array has A1,C1,D1,E1
i need to get D1,E1 since these are exists in custom array but not exists in grid column data.
-
I'm not sure about the format of data in your column. Can you please share a jsfiddle to help better understand your question.
Base jsfiddle: http://jsfiddle.net/5yg81u60/
-
thanks for your reply.
from your given example: assume that you have javascript arrary with company names
usercompanies=['Exxon Mobil','ONEITSS']
now i want to findout which are exists in usercompanies list and not exists in grid company column.
expected result from above example should be ONEITSS since Exxon Mobil is already exists in grid.
thx
-
There is no inbuilt API of grid to do it, you have to do it manually by iterating over the array of rows and find the non matching values.