searchpane is showing wrong value in option

searchpane is showing wrong value in option

shivani_aleriashivani_aleria Posts: 3Questions: 2Answers: 0

options: [
{
label: 'Zero',
value: function (rowData, rowIdx) {

                                        return parseFloat(rowData[2]) === parseFloat(0);
                                    }                                      
                                },
                                {
                                    label: 'Non-zero',
                                    value: function (rowData, rowIdx) { 

                                        return parseFloat(rowData[2]) !== parseFloat(0);
                                    }
                                }],

Answers

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

    We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here.

    Cheers,

    Colin

This discussion has been closed.