Category : Software Development

Home » Archive by category : Software Development

The default behavior of responsive datatable with checkbox srow selection use the same columsn for expansion and select. To resolve, you assign a separate column (first column) to handle the responsiveness, and a different column (2nd column) for row selection. Here’s an example. https://www.titanwolf.org/Network/q/f8b83600-61df-49b0-92de-15625240b4b0/yQuestion Responsive datatable with first column as checkboxwww.titanwolf.org Some extra explanation on ..

Read more

Unit testing should be performed by developers. The testing rules are standard for all unit-testing on any features. Unit Testing includes sunny cases (all good), rainy cases (bad input resulting error handling) and border/edge cases (like input is 0 or upper limit) The above should be tested in different environments . For web Apps, features should ..

Read more

Project setup set up source tree, ensure it’s version 13.11 or above eclipse -> new General project, set to correct folder Right click project – > configure -> convert to maven project Maven->update project Ensure that project uses at least JDK1.8 , note JDK not jre Run Maven install Run tms.web copy development’s site.properties file ..

Read more

checkout project classhub to C:\workspace\classhub in eclipse, new project for each sub directory: classhub-core classhub-api classhub-appserver classhub-web turn each project into Maven project, Maven->update project, and Run->Maven install Download and install Tomcat 7. https://tomcat.apache.org/download-70.cgi To run classhub, we need to run tomcat Note we change server.xml in tomcat to support SSL (https). Document can be ..

Read more

Java JDK Make sure jdk1.6.0_b45 is install in “c:\SportLogic.Java\jdk1.6.0_45”. Download here if not already installed: https://s3-ap-southeast-2.amazonaws.com/sportlogic/java/jdk-6u45-windows-x64.exe Also install Java 8 JDK (download from Oracle) e.g. JDK1.8.0_191. Install in c:\SportLogic.Java\jdk1.8.0_191. Add “JAVA_HOME” to environment variable (Control Panel > System > Advanced Settings”. Point to “c:\SportLogic.Java\jdk1.8.0_191”. Eclipse Install Install Eclipse IDE for Java EE Developers e.g. Oxygen ..

Read more

For Service level testing only Ensure the Service classes have  up to date description of what each method does. Write build test classes (extends SystemTestBase) in package  com.markjenny.tms.application.test.system.tests.* e.g. InvoiceSystemTest.java add to ant script build.xml system-test run build-test script clean-compile-system-test this is used by the build script to check f..

Read more