Posted 3 September 2018, 2:45 am EST
I want to disable the flexsheet arithmatic functions popup which appears once user types “=”.
I’ve tried using the following code:
flex.hostElement.addEventListener(“keydown”,(e)=>{
// condition: If key is “=” then
e.preventDefault();
e.stopPropagation();
},true);
But this prevents “=” from rendering on the selected cell.
However, I want the user to enter formulas using basic arithmatic operators, without using the arithmatic fucntions.
I also tried using the Flexsheet.hideFunctionList, but I am not getting desired result.
For the record we have purchased wijmo license, so I seek quality assistance from the support.
Thank you,
Chayan
