Subversion Repository Public Repository

litesoft

Diff Revisions 604 vs 605 for /trunk/Java/DATT/src/org/litesoft/datt/client/ui/views/stories/StoryTasks.java

Diff revisions: vs.
  @@ -21,7 +21,8 @@
21 21 StoryViewNames,
22 22 TableRowRemoveCallBack<TaskView>,
23 23 TableRowEditCallBack<TaskView>,
24 - TableRowMoveCallBack<TaskView>
24 + TableRowMoveCallBack<TaskView>,
25 + TaskDialog.CallBack
25 26 {
26 27 // private QBE_FormEngine mFE;
27 28
  @@ -82,7 +83,7 @@
82 83 @Override
83 84 public void onClick( ClickEvent event )
84 85 {
85 - // new DialogViewDialog( new AddNewTaskDialog( this ) ).show();
86 + new DialogViewDialog( new TaskDialog(TaskDialog.EditType.Add, StoryTasks.this ) ).show();
86 87 }
87 88 } ).create() );
88 89 SizeableVerticalPanel zVerticalPanel = new SizeableVerticalPanel().stretchable();
  @@ -154,4 +155,10 @@
154 155 {
155 156 System.out.println( "StoryTasks.removeRow: " + pRowValue );
156 157 }
158 +
159 + public void saveTask( TaskView pTaskView ) // for TaskDialog add and update Tasks
160 + {
161 +
162 + }
163 +
157 164 }