{
	"name": "student",
	"layoutType": "vertical",
	"title": "Create Student",
	"controls": [
		{
			"type": "row",
			"controls": [
				{
					"name": "name",
					"type": "input",
					"label": "Student Name"
				},
				{
					"name": "regno",
					"type": "input",
					"label": "Reg No."
				},
				{
					"name": "father_name",
					"type": "input",
					"label": "Father's Name"
				}
			]
		},
		{
			"type": "row",
			"controls": [
				{
					"name": "gender",
					"type": "select",
					"label": "Gender",
					"options": {
						"dataSource": [
							{
								"text": "Male",
								"value": "Male"
							},
							{
								"text": "Female",
								"value": "Female"
							}
						],
						"placeholder": "'Select...'",
						"dataTextField": "text",
						"dataValueField": "value"
					}
				},
				{
					"name": "dob",
					"type": "input",
					"label": "Date of Birth"
				},
				{
					"name": "religion",
					"type": "input",
					"label": "Religion"
				}
			]
		},
		{
			"type": "row",
			"controls": [
				{
					"name": "admission_no",
					"type": "input",
					"label": "Admission No"
				},
				{
					"name": "admission_date",
					"type": "input",
					"label": "Admission Date"
				},
				{
					"name": "last_date",
					"type": "input",
					"label": "Last Date"
				}
			]
		},
		{
			"type": "row",
			"controls": [
				{
					"name": "academic_from",
					"type": "input",
					"label": "From (Academic Year)"
				},
				{
					"name": "academic_to",
					"type": "input",
					"label": "To (Academic Year)"
				},
				{
					"name": "tc_date",
					"type": "input",
					"label": "Issue Date of TC"
				}
			]
		},
		{
			"type": "row",
			"controls": [
				{
					"name": "class",
					"type": "input",
					"label": "Class"
				},
				{
					"name": "subjects",
					"type": "input",
					"label": "Subjects"
				},
				{
					"name": "leave_reason",
					"type": "input",
					"label": "Reason of Leaving"
				}
			]
		},
		{
			"type": "row",
			"controls": [
				{
					"name": "exam_name",
					"type": "input",
					"label": "Examination Name"
				},
				{
					"name": "exam_month",
					"type": "input",
					"label": "Examination Month"
				},
				{
					"name": "result",
					"type": "select",
					"label": "Result",
					"options": {
						"dataSource": [
							{
								"text": "PASS",
								"value": "PASS"
							},
							{
								"text": "FIRST CLASS",
								"value": "FIRST CLASS"
							},
							{
								"text": "SECOND CLASS",
								"value": "SECOND CLASS"
							},
							{
								"text": "DISTINCTION",
								"value": "DISTINCTION"
							}
						],
						"placeholder": "'Select...'",
						"dataTextField": "text",
						"dataValueField": "value"
					}
				}
			]
		},
		{
			"type": "row",
			"controls": [
				{
					"name": "character",
					"type": "select",
					"label": "Character",
					"options": {
						"dataSource": [
							{
								"text": "Good",
								"value": "Good"
							},
							{
								"text": "Satisfactory",
								"value": "Satisfactory"
							},
							{
								"text": "Unsatisfactory",
								"value": "Unsatisfactory"
							}
						],
						"placeholder": "'Select...'",
						"dataTextField": "text",
						"dataValueField": "value"
					}
				},
				{
					"name": "internship_date",
					"type": "input",
					"label": "Internship Completion Date"
				},
				{
					"name": "remarks",
					"type": "input",
					"label": "Remarks"
				}
			]
		},
		{
			"name": "Submit",
			"type": "button",
			"label": "Save"
		},
		{
			"name": "New",
			"type": "button",
			"label": "New"
		},
		{
			"name": "Cancel",
			"type": "button",
			"label": "Cancel"
		}
	]
}
