You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i open my project by default an empty spread sheet should be open.
$(function(){
window.loadSheet = function (obj) {
var urls = {menuLeft: 'menu.left.html', menuRight: 'menu.right.html'}, results = {}, loadCount = 2, loaded = 0;
for(var type in urls) {
var tempUrl = urls[type];
$(document.createElement('div'))
.data('type', type)
.load(tempUrl, function() {
results[$(this).data('type')] = this.children[0];
loaded++;
if (loadCount == loaded) {
$('#sheet')
.attr('class', 'jSParent')
.sheet({
/* colMargin:25,
newColumnWidth: 140, */
minSize: {rows: 10, cols: 10},
menuLeft: function() {
var jS = this,
menu = $(results.menuLeft);
//Give anchors access to jS them
menu.find('a').each(function() {
this.jS = jS;
});
return menu;
},
menuRight: function (){
var jS = this,
//we want to be able to edit the html for the menu to make them multi-instance
menu = $(results.menuRight);
//Give anchors access to jS them
menu.find('a').each(function() {
this.jS = jS;
});
menu.find("select").each(function(){
this.jS = jS;
});
return menu;
}
});
}
});
}
};
loadSheet({});
});
i did like above code but the problem is that when inserting rows into spread row index is not coming correctly(sequence is not updated).
---
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/40016578-how-to-open-empty-spread-sheet-by-default?utm_campaign=plugin&utm_content=tracker%2F609152&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F609152&utm_medium=issues&utm_source=github).
The text was updated successfully, but these errors were encountered:
when i open my project by default an empty spread sheet should be open.
i did like above code but the problem is that when inserting rows into spread row index is not coming correctly(sequence is not updated).
--- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/40016578-how-to-open-empty-spread-sheet-by-default?utm_campaign=plugin&utm_content=tracker%2F609152&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F609152&utm_medium=issues&utm_source=github).The text was updated successfully, but these errors were encountered: