Manoj Thapliyal

Results 4 comments of Manoj Thapliyal

**Something Like This:** ``` settings = { columns: { name: { title: 'Driver Name', valuePrepareFunction: (cell, row) => { return row.driver.name; }, filter: false }, mobilenumber: { title: 'Mobile Number',...

@AllenFang facing similar issue data like this { "COMPANY_NAME": "apple", "COMPANY_SHORT_NM": "APPL" "expand": [ {"ID": 2, "PRODUCT_NAME": "iphone"}, {"ID": 3, "PRODUCT_NAME": "ipad" }, {"ID": 1, "PRODUCT_NAME": "macbook"} ] } due...

npm uninstall webpack --save-dev & npm install [email protected] --save-dev

That was type casting issue I use this code. // true Boolean(JSON.parse("true")); Boolean(JSON.parse("1")); Boolean(JSON.parse(1)); Boolean(JSON.parse(true)); // false Boolean(JSON.parse("0")); Boolean(JSON.parse(0)); Boolean(JSON.parse("false")); Boolean(JSON.parse(false));