Datatable server side inline validation Issue

Datatable server side inline validation Issue

tridibbosetridibbose Posts: 2Questions: 2Answers: 0

I have 4 columns in my DataTable. 1st column Project code, 2nd column Project Name, 3rd column Project description and 4th column Project Manager. Data I am fetching from Microsoft SQL server Management studio. I am using jquery.validation.js. I have to do server side inline validation.
1st Validation : (I) Project Code can't be empty, (II)Project Code should start with Alphabet, (III) No Special Characters are allowed in 'Project Code' except Space and Underscore.

2nd Validation : (I) Project Name can't be empty, (II)Project Name should start with Alphabet, (III) No Special Characters are allowed in 'Project Name ' except Space and Underscore.

3rd Validation : (I) Project Manager name can't be empty, (II)Project Manager name should start with Alphabet, (III) No Special Characters and digits are allowed in 'Project Manager name' except Space and Underscore.

I am using Spring MVC framework, J2ee, jsp and jquery. cam any one guide me as early as possible how can I accomplish this task as I could not find suitable code to execute these requirements ?

This discussion has been closed.