Posted 12 May 2020, 11:37 am EST
I’m experiencing a potential bug with FormulaTextBox in Chrome. I have a simple Sheets instance with a FormulaTextBox bound to it. When I open the page in Chrome, the cursor starts in the formula box, and I can edit it. But as soon as I switch cells, I can’t click into the box again. I’m only seeing the issue in Chrome – FF and IE work fine.
Here’s the code I’m using to build the components.
SpreadJS version: 13.0.4
Chrome version: 81.0.4044.129 (Official Build) (64-bit)
var container = document.getElementById('sheetContainer');
var spread = new GC.Spread.Sheets.Workbook(container, {
sheetCount : 1
});
var spreadNS = GC.Spread.Sheets;
var fbx = new spreadNS.FormulaTextBox.FormulaTextBox($doc.getElementById('formulaContainer'));
fbx.workbook(spread);
Thanks,
John Claxton
