Hello good pepole. I want to validate the following patterns
a)all letters
b)all positive digits 5-7
Here is a snippet of the form item for case a) and b) but it it=s not working.Help please.
var formData = [{type: "input", label: "Letters Only", validate:"[A-Za-z]+"}];
var formData = [{type: "input", label: "Numbers Only", validate:"[1-7]+"}];
i have another validation problem.i have a form that expects two date inputs,a start date and an end date.the difference between these two date should be less than or equal to 14.the start date should be a date greater than two weeks(14 days) from today,and the end date should be less than or equal to 14 days from today.how do i handle this in DHTMLX?
Thanx Andrei.u r a life saver!! how cn i block users who have not applied for a loan from visiting a page named checkloanstatus.php that uses a formconnector and php sessions,so that i avoid the error that displays wen ids is null?