If anyone faces the same issue in the future, I could figure it out and the solution was to add this css:
#symbolpalette {
display: inline-block;
}
Hi Hussain,To update the symbol palette width and height, we will take the custom tag(ej-symbolpalette) width and height value which returns improper width and height value. So only the symbol palette is hidden. To resolve that issue, we need to set the CSS display as inline-block for symbol palette as shown in the below code example. However we will consider it in our UG documentation and will inform you once it is refreshed online.Code example:#symbolpalette {display: inline-block;}Regards,Shyam G
Hi Shyam,
Thanks for the reply. Yes, I could figure that out.
Any ideas to make the ej-symbolpalette palette responsive?
I've put it inside a bootstrap div: <div class ="col-2">
With the display being set to inline-block, when resizing the browser window to smaller width I get some of the palette items out of the div.
That is exactly what I end up doing, however, doing so, will not show scrollbar and will hide the rest of palette items. Refreshing the page will show the scrollbar correctly.