开发者

JQuery Sheet Customization

I wanted to know if we can customize the jQuery sheet plugin according to user requirements, if yes ho开发者_JAVA百科w?

I would also like to know more functions, operations of the sheet plugin. Can we change the functions internally?


Hey Rohan! My name is Robert Plummer, I'm the creator and lead developer of jQuery.sheet. To answer your question, YES! With the latest release of jQuery.sheet, customizing calculations has never been easier. Here is a really quick example:

$('#sheetContainer').sheet({
  calculations:{
    SUM_V2: function(value_as_array) {
      var sum = 0;
      for (var i = 0; i < value_as_array.length; i++) {
        sum += value_as_array[i];
      }
      return sum;
    }
  }
});

Then you can use it inside a cell's value like this:

=SUM_V2(A1:A10)

Download the latest release here: http://visop-dev.com/Project+jQuery.sheet

Thanks for the interest in my project, if you have any further suggestions, please let me know!

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜