BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<ejs-treeview id="treeview" fields="fields">
<ejs-contextmenu
ref="contextMenu" // To get the instance
cssclass="contentmenutree" // changed the id to cssClass to add styling
target="#treeview"
v-on:click="onSampleSelect"
items="menuItems"
beforeopen="beforeopen"
select="menuclick">
</ejs-contextmenu>
</ejs-treeview>
beforeopen: function(args) {
var contentmenutree = this.$refs.contextMenu;
..//
}
.contentmenutree ul {
padding: 0px;
font-size: inherit;
} |