andycrespo27 / flexigrid

Automatically exported from code.google.com/p/flexigrid
0 stars 0 forks source link

Unable to do select for Shift+click #57

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?
>> I was expceting that when I click a row, color should and then I click 
another row, previous selected row color should be default, like we see in 
windows folders, when we select a folder the color goes to selected color, and 
then select another folder then previous select is lost. Also Im not able to do 
(Shift+ Mouse Click) to select a sequence of rows.

What version of the product are you using? On what operating system?

Please provide any additional information below.
I was expecting some thing like a windows folders. It need to have
Shift+Click, Ctrl+Click

Original issue reported on code.google.com by b.mahesh...@gmail.com on 19 Jul 2011 at 8:28

GoogleCodeExporter commented 8 years ago
I've runed  into this issue too when holding shift key to multiple rows 
selection, shift key threw error:

ReferenceError: e is not defined  pointing to Line 700 on flexigrid.js
 the event ( e) reference is missing in mouseup function args

    }).mouseup(function () {

change to

}).mouseup(function (e) {

on packed version look for the   }).mouseup(function ()
and put an 'e' (without quotes) inside () like this:
}).mouseup(function (e)

As for the rest you've mencioned just have to wait for the team to take a look 
at it.
Regards!

Original comment by rogeriod...@gmail.com on 24 Aug 2012 at 9:52