Guillaume Bonnaire

Results 68 comments of Guillaume Bonnaire

Hi, You can maybe use custom sorting : with options.sorting example ```javascript jexcel(DomElement, { sorting:function(direction) { return function(a, b) { var valueA = new Number(a[1]); var valueB = new Number(b[1]);...

Hi @Ashwin2488 Currently on version CE, you can't specify column exclude of sort on this framework. But you can override instance for exclude like : ```javascript MyTable = jspreadsheet(DOMElement, {...

Hi, After check on v4.6.1 it work fine. Can you make a jsFiddle with problem ?

Hi, Ok i have reproduct. In this case, when you start editing cell, scroll position is updated and when position is updated, current cell editor is close. If you type...

Try to add that for test ```javascript jspreadsheet(DOMEl, { onevent: function(e) { if(e=="onselection") { var el = arguments[0]; el.jspreadsheet.updateScroll(); } } }); ```

Yes in this case deleteRow not working fine @paulhodel But, you can use event onbeforedeleterow(el, rowNumber, numOfRows) and return false for cancel call remove of Jexcel Code not tested, add...

My code his use like that : ```javascript var MyTable = jexcel(ElDom, { onbeforedeleterow: function(el, rowNumber, numOfRows) { var obj = el.jexcel; var rowsElement = obj.getSelectedRows(); obj.ignoreEvents = true; for(var...

Have you un jsfiddle for example, it's more easy for help ? I think when filter, you can move row, but move include position of all rows hidden. For example,...

It's not a bug, for make that, you must use onredo event and onundo event ``` onredo: update, onundo: update, onchange: update, ```

Hi, For your first question, you have nestedHeader, you can look that in this page : https://bossanova.uk/jspreadsheet/v4/examples/nested-headers If that isn't that, can you explain with image ? for your second...