build_app
This commit is contained in:
		
							parent
							
								
									b6d132723b
								
							
						
					
					
						commit
						14f08de0a3
					
				| @ -75,6 +75,9 @@ addCustomMenu( "Todo","Todo",  "Transcations"); | ||||
| addCustomMenu( "Todo","Todo",  "Transcations");  | ||||
| 
 | ||||
| 
 | ||||
| addCustomMenu( "Todo","Todo",  "Transcations");  | ||||
| 
 | ||||
| 
 | ||||
| addCustomMenu( "Calculator","Calculator",  "Transcations");  | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -1,2 +1,2 @@ | ||||
| CREATE TABLE app-d.Todo(id BIGINT NOT NULL AUTO_INCREMENT, task VARCHAR(400), duedate Date, description VARCHAR(400), completed bit(1),  PRIMARY KEY (id)); | ||||
| CREATE TABLE app-d.Todo(id BIGINT NOT NULL AUTO_INCREMENT, task VARCHAR(400), description VARCHAR(400), completed bit(1), duedate Date,  PRIMARY KEY (id)); | ||||
| 
 | ||||
|  | ||||
| @ -23,19 +23,19 @@ | ||||
|         <div *ngIf="error;else loadingSpinner">{{error}}</div> | ||||
|     </clr-dg-placeholder> | ||||
| 
 | ||||
| <clr-dg-column [clrDgField]="'task'"> <ng-container *clrDgHideableColumn="{hidden: false}"> task | ||||
| <clr-dg-column [clrDgField]="'task'"> <ng-container *clrDgHideableColumn="{hidden: false}"> Task | ||||
| 						    </ng-container></clr-dg-column> | ||||
| 
 | ||||
| 
 | ||||
| <clr-dg-column [clrDgField]="'description'"> <ng-container *clrDgHideableColumn="{hidden: false}"> description | ||||
| <clr-dg-column [clrDgField]="'description'"> <ng-container *clrDgHideableColumn="{hidden: false}"> Description | ||||
| 						    </ng-container></clr-dg-column> | ||||
| 
 | ||||
| 
 | ||||
| <clr-dg-column [clrDgField]="'completed'"> <ng-container *clrDgHideableColumn="{hidden: false}"> completed | ||||
| <clr-dg-column [clrDgField]="'completed'"> <ng-container *clrDgHideableColumn="{hidden: false}"> Completed | ||||
| 						    </ng-container></clr-dg-column> | ||||
| 
 | ||||
| 
 | ||||
| <clr-dg-column [clrDgField]="'duedate'"> <ng-container *clrDgHideableColumn="{hidden: false}"> dueDate | ||||
| <clr-dg-column [clrDgField]="'duedate'"> <ng-container *clrDgHideableColumn="{hidden: false}"> DueDate | ||||
| 						    </ng-container></clr-dg-column> | ||||
| 
 | ||||
|   | ||||
| @ -236,22 +236,22 @@ | ||||
|     <form > | ||||
| <div class="clr-row">  | ||||
| <div class="clr-col-sm-12">        | ||||
| <label>task</label> | ||||
| <label>Task</label> | ||||
| 	        <input class="clr-input"  type="text" [(ngModel)]="rowSelected.task" name="task" /> | ||||
| 	      </div> | ||||
| 
 | ||||
| <div class="clr-col-sm-12">        | ||||
| <label>description</label> | ||||
| <label>Description</label> | ||||
| 	        <input class="clr-input"  type="text" [(ngModel)]="rowSelected.description" name="description" /> | ||||
| 	      </div> | ||||
| 
 | ||||
| <div class="clr-col-sm-12">        | ||||
| <label>completed</label> | ||||
| <label>Completed</label> | ||||
| 	        <input class="clr-input"  type="text" [(ngModel)]="rowSelected.completed" name="completed" /> | ||||
| 	      </div> | ||||
| 
 | ||||
| <div class="clr-col-sm-12">        | ||||
| <label>dueDate</label> | ||||
| <label>DueDate</label> | ||||
| 	        <input id="name" class="clr-input"  type="date" [(ngModel)]="rowSelected.duedate" name="duedate" /> | ||||
| 	      </div> | ||||
| 
 | ||||
| @ -330,22 +330,22 @@ | ||||
|    <div class="clr-row" style="height: fit-content;"> | ||||
| 
 | ||||
| <div class="clr-col-sm-12"> | ||||
|  <label>  task</label> | ||||
|  <label>  Task</label> | ||||
|  <input class="clr-input"  type="text"  formControlName="task" />        | ||||
|  </div> | ||||
| 
 | ||||
| <div class="clr-col-sm-12"> | ||||
|  <label>  description</label> | ||||
|  <label>  Description</label> | ||||
|  <input class="clr-input"  type="text"  formControlName="description" />        | ||||
|  </div> | ||||
| 
 | ||||
| <div class="clr-col-sm-12"> | ||||
|  <label>  completed</label> | ||||
|  <label>  Completed</label> | ||||
|  <input class="clr-input"  type="text"  formControlName="completed" />        | ||||
|  </div> | ||||
| 
 | ||||
| <div class="clr-col-sm-12"> | ||||
|  <label>  dueDate</label> | ||||
|  <label>  DueDate</label> | ||||
|  <input class="clr-input"  type="date"  formControlName="duedate" />        | ||||
|  </div> | ||||
| 
 | ||||
|  | ||||
| @ -1,6 +1,7 @@ | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| import { CalculatorwireframeComponent } from './BuilderComponents/app-b/Calculatorwireframe/Calculatorwireframe.component'; | ||||
| 
 | ||||
| 
 | ||||
| @ -291,6 +292,8 @@ const routes: Routes = [ | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| {path:'Calculatorwireframe',component:CalculatorwireframeComponent}, | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -1,6 +1,7 @@ | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| import { CalculatorwireframeComponent } from './BuilderComponents/app-b/Calculatorwireframe/Calculatorwireframe.component'; | ||||
| 
 | ||||
| 
 | ||||
| @ -164,6 +165,8 @@ import { MyworkspaceComponent } from './admin/myworkspace/myworkspace.component' | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| CalculatorwireframeComponent, | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -227,8 +227,8 @@ | ||||
|   "STATUS": "Status", | ||||
|   "SUB_MENU": "Sub Menu", | ||||
|   "Todo": "Todo", | ||||
|   "task": "task", | ||||
|   "dueDate": "dueDate", | ||||
|   "description": "description", | ||||
|   "completed": "completed" | ||||
|   "Task": "Task", | ||||
|   "Description": "Description", | ||||
|   "Completed": "Completed", | ||||
|   "DueDate": "DueDate" | ||||
| } | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user