3.2.0

Shift Select

Are there plans to enable using the shift key to select a range in 2? This is a very useful feature that works in version 1. The patches intended to accomplish posted in this forum are unpredictable.
Patrick
August 24,
Yes, this should be in 2.0.2
Alex (ActiveWidgets)
August 25,
ETA on 2.0.2?
August 26,
It is listed as being fixed in 2.0.2 but I'm still not seeing it working? Do I need to set something to enable this?
Mike
April 20,
Set selection mode to "multi-cell" or "multi-row".

grid.setSelectionMode("multi-cell");
Alex (ActiveWidgets)
April 20,
I am using multi-row and ctrl click works but not shift...

table.setId('myGrid');
     table.setColumnCount(12);
     //table.setColumnCount(15);
     //table.setColumnIndices([0,1,3,5,6,4,2,7,8,9,10,11,12,13,14]);
     table.setColumnIndices([0,13,1,3,5,6,4,2,7,8,9,10]);
     table.setHeaderText(headers);
     table.setCellModel(data);
     table.setVirtualMode(true);
     table.setCellFormat(number, 13);

     table.setSelectorText(function(i){return this.getRowPosition(i)+1});
     table.setSelectorVisible(true);
     table.setSelectorResizable(true);
     table.setHeaderHeight(20);
     table.setSelectorWidth(25);
     table.setRowCount(0);
    // table.getHeadersTemplate().setClass("text", "normal");

     table.setCellEditable(false);
     table.setSelectionMode("multi-row");
     }
Mike
April 23,
Cannot reproduce this - are you 100% sure you have AW 2.0.2? try adding
alert(AW.version);
Alex (ActiveWidgets)
April 23,
You are correct, I appologize. Our stagging environment had a seperate symlink to the old version that was overwriting mine.
Mike
April 23,

This topic is archived.

See also:


Back to support forum