Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.litesoft.datt.client.ui.widgets;

import org.litesoft.GWT.client.*;
import org.litesoft.GWT.client.widgets.datatables.*;
import org.litesoft.datt.client.boviews.*;

public class TaskViewTable extends SingleSelectRegularTable<TaskView> {
    public TaskViewTable( FilteringTableModel<TaskView> pModel, TableClickCommand<TaskView> pClickCommand ) {
        super( pModel, new TableDef(), pClickCommand );
    }

    private static class TableDef extends BoTableDefinition<TaskView> implements TaskViewNames,
                                                                                 DataTableStyle {
        public TableDef() {
            TaskViewMetaData zMD = TaskViewMetaData.getInstance();

            addColumn( zMD.getBoAttribute( aName ) );
            addColumn( zMD.getBoAttribute( aDescription ), "Description" );
            addColumn( zMD.getBoAttribute( aIsDone ), "Done" ).initialWidth( FontSizer.get( TABLE_TEXT ).EMsPlus( 4, CELL_PADDING ) );
            addColumn( zMD.getBoAttribute( aCreatorFullName ), "Creator" );
        }
    }
}

Commits for litesoft/trunk/Java/DATT/src/org/litesoft/datt/client/ui/widgets/TaskViewTable.java

Diff revisions: vs.
Revision Author Commited Message
948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

565 Diff Diff markcmarkc Sun 13 Nov, 2011 21:45:35 +0000
511 Diff Diff markcmarkc Sun 18 Sep, 2011 22:42:49 +0000

Added Restricted Resource to Story selection and fixed update of who last prioritized the story

502 Diff Diff markcmarkc Mon 12 Sep, 2011 00:46:45 +0000
430 GeorgeS picture GeorgeS Sat 20 Aug, 2011 19:46:21 +0000