How to hide menubar or toolbar in Aspose Cell GridJs

How to hide menubar or toolbar.
I want custom toolbar in Aspose Cell GridJs
Pls help me

image.png (28.1 KB)

@duyhai08
please try set the loadoption:
showToolbar: false,
mode: ‘read’,
for example:

 const option = {
                updateMode: 'server',
                updateUrl: '/GridJs2/UpdateCell',
                showToolbar: false,
                mode: 'read',
                local: 'en',
                }
xs = x_spreadsheet('#gridjs-demo', option)

the document you can refer to:

@peter.shou, thank you.

@duyhai08
You are welcome.