Tableviewer, click the first column to select all or none

Source: Internet
Author: User

Sometimes you need to click a column in the table to select all or none. You can set the text of the first column to null to implement this function. It is generally used on a check-style table or checkboxtableviewer.

Specific Code:

Tablecolumn columncheck = new tablecolumn (searchresults, SWT. None );

Columncheck. settext (""); // set the text ""

Columncheck. addselectionlistener (New selectionadapter (){

Public void widgetselected (selectionevent e ){

Setallcheckedstatus (! _ Boallselected); // You can select and cancel all options.

}

});

// Other columns

Tablecolumn columntitle = new tablecolumn (searchresults, SWT. None );

Columntitle. settext (messages. getstring ("playlistview. Title "));

Searchresults is of the table type, and tableviewer is encapsulated by table.

Searchresults = toolkit. createtable (searchresultclient, SWT.Check| SWT.V_scroll|
SWT.H_scroll| SWT.Full_selection);

Viewer = new tableviewer (searchresults );

Private void setallcheckedstatus (Boolean status ){

For (INT I = 0; I <searchresults. getitemcount (); I ++ ){

Searchresults. getitem (I). setchecked (Status );

}

_ Boallselected = status;

}

:

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.