Compare data values with ajax

Compare data values with ajax

dsfsdfewrdsfsdfewr Posts: 2Questions: 2Answers: 0
edited February 2020 in Free community support

I want to compare extn values ​​in ajax.

example1, extn value greater than 5000, this row load.
example2, extn value is 5000 or less, this row load.

Eventually,
example1
Name Position Office salary extn
Herrod Chandler Sales Assistant San Francisco $137,500 9608
Quinn Flynn Support Lead Edinburgh $342,000 9497
...

example2
Name Position Office salary extn
Brielle Williamson Integration Specialist New York $372,000 4804
Zorita Serrano Software Engineer San Francisco $115,000 4389
....

This is the answer I want.
https://jsfiddle.net/zvamLqdc/2/ my jsfiddle.

What's the way? please help. thanks.

Answers

  • colincolin Posts: 15,146Questions: 1Answers: 2,586

    You can't selectively add or remove rows from the ajax, so the best way to proceed would be to change the ajax itself. You can either do it on the server, only sending the extns you want, or within ajax.dataSrc, where you can remove the entries you don't want in the table.

    Colin

This discussion has been closed.