Hi SaiSravya,
We have implemented the feature Support to Restrict expand/collapse of the symbol palette in our Essential Studio 2020 Volume 3 release v18.3.0.35 is rolled out and is available for download under the following link
We have created a sample to open the palette all time in the sample. By using the paletteExpanding event we can able to restrict the palette closing. When you click on the palette arrow icon paletteExpanding event gets triggered, in that event set args cancel as true. So that palette does not gets collapse at run time and open all time in page. Please refer below code snippet and sample below
//HTML
<ejs-symbolpalette id="symbolpalette" [expandMode]='expandMode' [palettes]='palettes' width="100%" height="700px" [symbolHeight]=60 [symbolWidth]=60 [symbolMargin]='symbolMargin' [getSymbolInfo]='getSymbolInfo' [getNodeDefaults]='getSymbolDefaults' (paletteExpanding)="paletteExpanding($event)">
</ejs-symbolpalette>
//TS
public paletteExpanding(args: IPaletteExpandArgs) {
args.cancel = true;
}
|
We thank you for your support and appreciate your patience in waiting for this release. Please get in touch with us if you would require any further assistance.
Regards,
Aravind Ravi