girish_327
Posts: 108
|
| Posted: 10/17/2007, 8:18 AM |
|
Hello All,
Below is my sample table
CREATE TABLE `admin` (
`admin_id` int(10) NOT NULL auto_increment,
`club_id` int(10) NOT NULL,
`month_id` int(10) NOT NULL,
`year_id` int(10) NOT NULL,
`received_date` date NOT NULL,
`a001` int(10) default '0',
`a002` int(10) default '0',
`a003` int(10) default '0',
`a004` int(10) default '0',
`a005` int(10) default '0',
`successful` int(2) default '0',
`checked` int(2) NOT NULL default '0',
PRIMARY KEY (`admin_id`)
) ;
In above table there are actually 100 of fields from a001 to a100 and
each field having various validations.
I want user must I have to click checkbox before adding any value in the textfield.
The all textfields default value is null. Whenever checkbox is clicked the value will be filled.
Then I will validate the data OnValidation Event
if there is any other method to do this program please tell me.
Thanks in Advance
_________________
Girish Baraskar
Web Designer/Developer
http://www.agnisdesigners.com
http://www.eindianpaintings.com
http://www.realestatekolhapur.com |