Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 DataGrid 对象在表中显示数据。有没有办法允许使用 DataGrid 选择多个单元格?我已经看到 AdvancedDataGrid 可以使用它,但我想将此作为解决我问题的最后手段。
谢谢。
尝试将allowMultipleSelection设置为 true。请注意,要选择多行,您需要按住控制键。
您可以按如下方式使用它,
<mx:DataGrid id="xyz" allowMultipleSelection="true" />