Dimitar Christoff

Results 23 comments of Dimitar Christoff

I will look into it, don't currently use VSCode but I don't see why not.

I did look at that, but it's too diverged. As you point out, some difficulties etc. I am going to be working on the grid all of next week in...

hrm this is due to the `.apply()` on the event emitter which expands the array. will look at changing this to a .call and what options that presents. i guess...

this is now slightly different in the new event imlementation. https://github.com/DimitarChristoff/epic/blob/master/lib/index.js#L33-L148

Found the issue. https://github.com/ddomingues/X-SlickGrid/blob/master/slick.grid.js#L3710 - this compares row to scroll to with -1 when there isn't a frozen row (say, just frozen columns).

i am more concerned with going forward and performance than backwards compatibility, to be fair - which may mean misaligned goals. for example, I am currently looking at deprecating jquery-ui...

yeah agreed re bower. as for deprecation of event.drag, I have fully working column resize with interact.js and currently deprecating UI sortables for column reorder, but this is more complex....

ok this now works on my remote branch. https://github.com/DimitarChristoff/slickgrid-es6/tree/interact-js - you can play with it by forking repo, checking out the branch and running `npm start` after `npm install` https://github.com/DimitarChristoff/slickgrid-es6/pull/1/files...

you can use UMD and set build target to that but it can be annoying when deps like jquery-ui are completely non compliant and need special requirejs configurations to get...

this should probably be caught by the `grunt/file.js` grunt.file - https://github.com/gruntjs/grunt/blob/master/lib/grunt/file.js#L300 but it's just not working. adding this fixes it: ``` javascript try { grunt.file.write(sourceMapFilename, output.map); grunt.log.writeln('File ' + chalk.cyan(options.sourceMapFilename)...