Our powerful JS Calendar component


Post by Nagesh@Apoorva.com »

Hi,

Please let me know How to hide the Tooltip all button icons in the Calendar, Please find the below screenshot as a reference.

Attachments
Calendar Tooltip.png
Calendar Tooltip.png (120.49 KiB) Viewed 812 times

Post by Animal »

An easy way is this CSS:

.b-sch-event-tooltip .b-tool {
    display : none;
}

We'll try to think of a way to do this configuration.


Post by Animal »

You can configure the tools away:

    features : {
        eventTooltip : {
            tooltip : {
                tools : {
                    edit : null,
                    delete : null
                }
            }
        }
    }

It currently does not tolerate configuring away the close tool, so that is a bug.


Post by Animal »

Actually...

    features : {
        eventTooltip : {
            tooltip : {
                closable : false,
                tools : {
                    edit : null,
                    delete : null
                }
            }
        }
    }

Should work


Post by Nagesh@Apoorva.com »

Thank you it's working fine.


Post Reply