| 
					 Title: Treegrid multiple select happens by field id rather than row id Post by: scfrazer on October 06, 2016, 07:17:36 AM When using the treegrid and setting singleSelect to false, if you click a row then shift click another row further down, the rows selected are those between the two row ids, regardless of which rows are actually between the two clicked rows.  Here is an example, with eight rows in order except for the one with id=3: 
					Code: <!DOCTYPE html> If you click row 0, then shift-click row id=3 (the 7th row), it will select rows with ids=0..3, skipping rows with id=4..6 even though they are in-between the two clicked rows. Similarly, click row id=0 and row id=4 and it will select row id=3 too even though it is not in-between. I am using the free version (thanks BTW!), so the source code for the treegrid is obfuscated, but I could see enough that it looks like the multiple select is happening with min()/max() for the ids, rather than something like row indexes. Thanks, Scott Title: Re: Treegrid multiple select happens by field id rather than row id Post by: jarry on October 08, 2016, 08:51:09 AM Please download the patch from http://www.jeasyui.com/download/downloads/jquery-easyui-1.5-patch.zip. 
					Title: Re: Treegrid multiple select happens by field id rather than row id Post by: scfrazer on October 10, 2016, 12:05:11 PM That fixes it, thanks! 
					Scott  |