BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
created: (): void => {
spreadsheet.addFileMenuItems([{ text: 'mobi/doc', iconCss: 'e-save e-icons' }], 'Comma-separated values'); // added the items in file menu
} |
$(function () {
$("#Spreadsheet").ejSpreadsheet({
enableContextMenu: false,
allowCellType: true,
allowFormulaBar: false,
ribbonSettings: {
enableOnDemand: false,
applicationTab: {
type: ej.Ribbon.ApplicationTabType.Menu,
menuSettings: {
isAppend: true,
dataSource: []
}
}
},
loadComplete: "loadComplete"
});
});
function loadComplete(args) {
var xlFormat = this.XLFormat, xlEdit = this.XLEdit;
this.XLRibbon.addMenuItem([{ id: "SignIn1", text: "Mobi/doc", parentId: "ExportXL", spriteCssClass: "e-icon e-ssr-cut" }], 6); // 6 -index
if (!this.model.isImport) {
this.sheetRename("Cell Type");
this.setWidthToColumns([133, 93, 59, 59, 122, 142, 92, 142, 82]);
this.XLResize.setRowHeight(4, 27);
}
} |