I am re-developing the datagrids in a web application. A discussion has started around whether checkboxes to select in a datagrid are still necessary. Have mobile touch interfaces and their general lack of checkboxes in lists and grids trained users enough where this is possible to consider?
|
|
In contrast to TomDoes's implementation, we had a situation where we implemented a click-to-select, double-click-to-open paradigm. With the appropriate hilighting on hover and select and the corresponding cursor changes, our users found the interface to be simple and intuitive. (We did include an additional column with an 'open' button for the users who haven't quite figured out the double-click method of opening an account by double clicking the row. I have not yet done an analysis of how many used the button versus the double-click.) Our application is targeted to healthcare IT and is purely web based and is not designed or intended for mobile users. (Mostly because, in the US at least, there are an awful lot of hospitals where they limit the mobile devices you're allowed to use. And for HIPAA security reasons.) Our users tend to be a mix of Baby Boomers and Gen X-ers, most of them trending to less tech savvy, and they picked up on the paradigm without too much difficulty. Finally, if you're concerned that they won't pick up on the concept, you could always include some helpful text on hover (a la tooltips) or some small 'hint' type message: "click to select [a row]". |
|||
|
|
Recently we had the same discussion when we added support for row-clicks, shift-clicks etc in our web-application. We decided to keep the check boxes because our users weren't used to using the ctrl key for multi-selecting random rows. In general I would say if clicking the rows links to other pages, then of course you need check boxes to enable multi-select (for example the gmail interface). If not consider your users and do some user tests to check the consequences of ommitting checkboxes. Personally I would keep the checkboxes, your application will be consistent with widely used apps like Google Drive and Dropbox, usability is not impaired by leaving them in and the amount of screen estate saved by leaving them out is relatively small on a desktop computer. |
|||||
|
