Skip to content

stephenkyaw/jdatagrid

Repository files navigation

jdatagrid

javascript data grid entry library

features

  • crud operation ✔️
  • validation ✔️
  • sorting ✔️
  • searching ❌
  • pagination ✔️

pages-build-deployment

👉 🔗 Demo Example 😁

html

 <table id="jgrid" class="table table-bordered"></table>

javascript

grid = new jdatagrid(
               {
                   table_name: '#jgrid',
                   item_list:
                       [
                           { name: 'name', input_type: 'text', header_text: 'Name', is_require: false, require_message : 'please enter name', attributes: [{ name: 'class', value: 'form-control' }], is_sort : true },
                           { name: 'date_of_birth', input_type: 'date', header_text: 'Date of birth',is_require: false,  attributes: [{ name: 'class', value: 'form-control' }] },
                           { name: 'gender', input_type: 'radio', header_text: 'Gender',is_require: false, data: [{ text: 'Male', value: 'M' }, { text: 'Female', value: 'F' }] },
                           { name: 'status', input_type: 'checkbox', header_text: 'Status' , is_require: false, require_message: 'please check the status!'},
                           { name: 'subjects', input_type: 'checkbox', header_text: 'Subjects',  data: [{ text: 'Html', value: 'html' }, { text: 'CSS', value: 'css' }, { text: 'Javascript', value: 'javascript' }] },
                           { name: 'class', input_type: 'select', header_text: 'Class',is_require: false,  attributes: [{ name: 'class', value: 'form-control' }], data: [{ text: 'Class A', value: 'class_a' }, { text: 'Class B', value: 'class_b' }, { text: 'Class C', value: 'class_c' }] }
                       ],
                   is_pagination: true,
                   page_size: 3
               }
           );

input_type

color
date
datetime-local
month
number
password
search
tel
text
time
url
week
range
url
select (return data object)
checkbox (return data object or boolean)
radio (return data object or boolean)

data object (array)

data : [{ text : 'text field', value : 'value field' }]

attributes (array)

attributes :[{ name : 'attribute_name', value : 'attribute_value' }]

get data

 btn_submit.addEventListener('click', function () {            
            result.innerHTML = '';
            let data = jdatagrid.get_data();
            result.innerHTML = JSON.stringify(data);
            console.log('jdatagrid data log', data);
        });

data object log

[{
		"name": "John",
		"date_of_birth": "1991-12-30",
		"gender": [{
			"text": "Male",
			"value": "M"
		}],
		"status": true,
		"subjects": [{
				"text": "Html",
				"value": "html"
			},
			{
				"text": "CSS",
				"value": "css"
			},
			{
				"text": "Javascript",
				"value": "javascript"
			}
		],
		"class": [{
			"text": "Class A",
			"value": "class_a"
		}],
		"auto_increment_id": 1
	},
	{
		"name": "May",
		"date_of_birth": "1989-06-14",
		"gender": [{
			"text": "Female",
			"value": "F"
		}],
		"status": false,
		"subjects": [{
			"text": "Html",
			"value": "html"
		}],
		"class": [{
			"text": "Class B",
			"value": "class_b"
		}],
		"auto_increment_id": 2
	},
	{
		"name": "David",
		"date_of_birth": "1988-10-20",
		"gender": [{
			"text": "Male",
			"value": "M"
		}],
		"status": true,
		"subjects": [{
				"text": "Html",
				"value": "html"
			},
			{
				"text": "CSS",
				"value": "css"
			},
			{
				"text": "Javascript",
				"value": "javascript"
			}
		],
		"class": [{
			"text": "Class C",
			"value": "class_c"
		}],
		"auto_increment_id": 3
	}
]

About

javascript data grid entry library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published