Skip to main content

Posts

Showing posts with the label Tutorial

Setup The Structure Template In Nuxeo

Learn how you can predefined the folder structure with ACL permissions when the new workspace is created. * You can define the n number of folders in nuxeo platform * You can define any other documents * You can choose the Root / Collection / workspace / domain only once to avoid the conflict between multiple structure template. * Setting up the details via structure template, it will always execute the predefined setup whenever the context directory is being generated and you can save a lot of time for setting up the same structure and permission. Just see the below video for how to do tutorial using Nuxeo LTS 2021 platform.

Creating Vocabulary & Drop down widget Using Nuxeo Studio & Web UI 2021

Create vocabulary in nuxeo platform for dropdown widget. * Add your options in the vocabulary section & choose your vocabulary type according to your business needs * Select your document type * Go to schema section * Add a new field * Select your data type as directory * Select your vocabulary  * Save your document type * Configure your layouts like create, edit and meta with new field changes * Hot reload your configuration * Now you can see the new changes in the nuxeo platform. See the complete walk through session from the youtube.

Mysql Database Tutorial For Beginner & Intermediate Level - Part 01

This video explains you about the creating of new database and followed by the implementation of create , update, alter , delete , truncate and drop the table. Creating table with example data by defining the columns and its relevant datatype and the importance of primary key usage and the various methods of performing insert query and usage.

What is Mysql Database ?

Database is used to store the information in a perfect manner so that it can be easily manage the data and can be easily retrieved by filtering it with the help queries. There are two type of database 1. Relational Database - Human relations like parents and child 2. Flat Database          - Stores on hard disks like text files. What is Mysql Database? Mysql Database is a relational database, open source ( free of cost ) and its most popular database that can be used for web application and can be used for dynamic server side application.

Where Syntax for SELECT Query in Mysql

Where Syntax in Select Query can be used to filter the data from database.Suppose if you have 100 of data with different gender like male and female but you want the data of all male what you can do? Simply use mysql select query with where condition to filter the data from table. Example Table : For your reference table_name Column_name1 Column_name2 Column_name3 Column_name4 1 Male articles Sam 2 Female database Sam 3 Male coding Jam 4 Male coding Kam 5 Female coding Jam Table Name is : table_name Query : "SELECT * from table_name WHERE Column_name2='Male'" If you execute the above query then all female records will disappears from the table data ...

Distinct Syntax for SELECT Query in Mysql

If you have same data on the database table and you want to avoid duplication in your query result then you can use distinct word in mysql query to avoid duplication. Example Table : For your reference table_name Column_name1 Column_name2 Column_name3 Column_name4 1 Tech articles Sam 2 Mysql database Sam 3 Java coding Jam 4 J2ee coding Kam 5 Hibernate coding Jam Table Name is : table_name The table table_name contains four column data but the column_name4 has 2 sam and 2 Jam but i want  to avoid sam and Jam with single results. Query : "SELECT  DISTINCT Column_name4 from table_name" If you execute the above query then the duplicate data from Column_name4 will be filtered. table_name Column_name4 Sam Jam Kam

Select Query in MySQL Database

Select Query in MySQL is used to select data from a database tables. Select Query can be performed with single column, multiple column and all column Example Table : For your reference table_name Column_name1 Column_name2 Column_name3 Column_name4 1 Tech articles Sam 2 Mysql database Sam 3 Java coding Jam 4 J2ee coding Kam 5 Hibernate coding Jam Table Name is : table_name Default Syntax for SELECT Query in Mysql  Query : " Select column_name1 from table_name" If you execute the above query then the above table data will be displayed only column_name1 table_name Column_name1 1 2 3 4 5 Query : " Select  column_name1,   column_name3  from  table_name" If you execute the above query then the above table data will display column_name1 and column_name3 table_name Column_name1 Column_n...

EJB Timer or Scheduler or Batch - Cron Quartz

Quartz Scheduler is an open source job scheduling service for your Java EE or Java SE. Every task cannot be done manually but some task like notification or important alerts have to perform based on time and date. In this article you will learn how to write EJB Timer for your Enterprise applications. CronJob.java - CronJob is used to execute the method for the given interval period package com.demo; import org.quartz.Job; import org.quartz.JobExecutionContext; import org.quartz.JobExecutionException; //CronJob implements the Job interface - Add Quartz jar into your project build path public class CronJob implements Job { public void execute(JobExecutionContext arg0) throws JobExecutionException {  // Your Code Here System.out.println("Technology Innovation "); } } CronEJB.java - is used to set the scheduler time, date and time based region package  com.demo; import java.util.TimeZone; import javax.annotation.PostConstruct; import jav...

Ext GWT Tutorial - Sample Codes

Google Web Toolkit is a great web technology to develope the Ajax (Asynchronous Java with XML) based web application but you can create ARIA(Accessible Rich Internet Application) based user interface with help of Ext-GWT (Extended Google web toolkit). What all you have to do is Download the Ext-GWT jar from sencha and add this jar to your java build path and also inherit this with your project so that you can start implementing great user interface for your project. If you are willing to learning Ext GWT then save this link as bookmark and keep visiting for the latest sample code updates ... Chart Examples Advance Chart In Ext GWT Pie Chart In Ext GWT Chart Gallery In Ext GWT Tab Examples Simple Tab In Ext GWT Advance Tab In Ext GWT Grid Examples Basic Grid In Ext Gwt Aggregation Rows Grid In Ext Gwt Auto Height Edit Plants Grid In Ext GWT Bean Model Grid In Ext GWT Buffered Grid In Ext Gwt Column Grouping Grid In Ext Gwt Local Paging Grid In Ext GWT Paging Grid In Ext GWT...

Advance Chart In Ext GWT

Advance Charts In Ext Google Web Toolkit Sample Code package  com.extjs.gxt.samples.client.examples.tabs;      import  com.extjs.gxt.ui.client.event.ButtonEvent;   import  com.extjs.gxt.ui.client.event.Events;   import  com.extjs.gxt.ui.client.event.Listener;   import  com.extjs.gxt.ui.client.event.SelectionListener;   import  com.extjs.gxt.ui.client.widget.HorizontalPanel;   import  com.extjs.gxt.ui.client.widget.LayoutContainer;   import  com.extjs.gxt.ui.client.widget.TabItem;   import  com.extjs.gxt.ui.client.widget.TabPanel;   import  com.extjs.gxt.ui.client.widget.VerticalPanel;   import  com.extjs.gxt.ui.client.widget.button.Button;   import  com.extjs.gxt.ui.client.widget.button.ToggleButton;   import  com.google.gwt.user.client.Element;      ...

Advance Tab In Ext GWT

Advance Tab In Ext Google Web Toolkit Sample Code package  com.extjs.gxt.samples.client.examples.tabs;      import  com.extjs.gxt.ui.client.event.ButtonEvent;   import  com.extjs.gxt.ui.client.event.Events;   import  com.extjs.gxt.ui.client.event.Listener;   import  com.extjs.gxt.ui.client.event.SelectionListener;   import  com.extjs.gxt.ui.client.widget.HorizontalPanel;   import  com.extjs.gxt.ui.client.widget.LayoutContainer;   import  com.extjs.gxt.ui.client.widget.TabItem;   import  com.extjs.gxt.ui.client.widget.TabPanel;   import  com.extjs.gxt.ui.client.widget.VerticalPanel;   import  com.extjs.gxt.ui.client.widget.button.Button;   import  com.extjs.gxt.ui.client.widget.button.ToggleButton;   import  com.google.gwt.user.client.Element;      publ...