I would like to know which cells the user currently has selected.
igSpreadsheet("getActiveSelection").activeCell() will give me the first cell selected in a range of cells but I want to know all the cells the user has selected.
Any assistance is appreciated. Thanks!
Hello Brian,
Thank you for using Ignite UI for JavaScript!
For your scenario you could use
$(".selector").igSpreadsheet("getActiveSelection").cellRangesAddress();
Please, let me know if you have other questions or in case this is not suitable for your scenario.
Best regards,Alexander
Perfect. Thank you!