Hi,

I would like to implement a new selection mode for table and treevirtual.

No we have:

    /** {int} The selection mode "none". Nothing can ever be selected. */
    NO_SELECTION                : 1,

    /** {int} The selection mode "single". This mode only allows one
selected item. */
    SINGLE_SELECTION            : 2,


    /**
     * (int) The selection mode "single interval". This mode only allows one
     * continuous interval of selected items.
     */
    SINGLE_INTERVAL_SELECTION   : 3,


    /**
     * (int) The selection mode "multiple interval". This mode only allows
any
     * selection.
     */
    MULTIPLE_INTERVAL_SELECTION : 4

The new mode I would like to add is:

    /**
     * When the user clicks an item, its selection state is toggled.
     * MULTIPLE_INTERVAL_SELECTION allows to select several items, but is
focused primarily 
     * to select just one.  This mode emphasizes the multiple selection to
the end user.
     */
    MULTIPLE_INTERVAL_SELECTION_TOGGLE : 5

Do the table and treevirtual gurus like this new mode?
If so, I will implement it.

Regards,
David
-- 
View this message in context: 
http://www.nabble.com/Table-selection%3A-MULTIPLE_INTERVAL_SELECTION_TOGGLE-tf4155970.html#a11824553
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to