How to add Hyperlink in SWT Table`s column?

后端 未结 3 1304
终归单人心
终归单人心 2021-01-05 14:28

How to add Hyperlink in SWT Table column ? I`m using org.eclipse.swt.widgets.Table class.

Is there any way to do this without using TableViewer, JFace ?

I tr

3条回答
  •  心在旅途
    2021-01-05 14:46

    You need to set the size of the editor:

    editor.grabHorizontal = true;
    //or
    editor.minimumWidth = 50;
    

提交回复
热议问题