Posted 21 August 2026, 1:16 am EST
- Updated 21 August 2026, 1:21 am EST
Currently i’m able to change the color but default blue border should not be there, my border is coming below or on top of it.
const onStart = () => {
const s = spread.getActiveSheet();
s.options.selectionBorderColor = ‘transparent’;
s.repaint();
requestAnimationFrame(() => {
const editorEl = document.querySelector(‘[gcuielement=“gcEditingInput”]’) as HTMLElement | null;
if (editorEl) {
editorEl.style.setProperty(‘outline’, ‘none’, ‘important’);
editorEl.style.setProperty(‘border-style’, ‘solid’, ‘important’);
editorEl.style.setProperty(‘border-width’, ‘2px’, ‘important’);
editorEl.style.setProperty(‘border-color’, ‘#5F2BFF’, ‘important’);
}
});
};