TabRecordExtension
Esta página aún no está disponible en tu idioma.
Methods
Section titled “Methods”| method | Description |
|---|---|
| getTabText() | Used by OpenKM to get the tab text. |
| set(GWTRecord record) | Each time there’s some record selected ( in browser ) is executed this method by OpenKM to refresh record tab panel information. |
| setVisibleButtons(boolean visible) | Shows or hides buttons ( for example in trash view normally edit button should not be visible ). |
Sample
Section titled “ Sample”public class TabRecordExample extends TabRecordExtension { VerticalPanel vPanel;
public TabRecordExample() { vPanel = new VerticalPanel(); vPanel.add(new HTML("hello world"));
initWidget(vPanel); }
@Override public String getTabText() { return "New folder tab"; }
@Override public void set(GWTRecord record) { // TODO Auto-generated method stub }
@Override public void setVisibleButtons(boolean visible) { // TODO Auto-generated method stub }}