Quantcast
Channel: Yii Framework Forum
Viewing all articles
Browse latest Browse all 18717

Modifying The Output In The Admin Page

$
0
0
CREATE TABLE `attendance` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`classId` varchar(3) NOT NULL,
`admissionId` varchar(8) NOT NULL,
`nameWithInitials` varchar(100) DEFAULT NULL,
`Date` date DEFAULT NULL,
`status` tinyint(1) DEFAULT '1',
PRIMARY KEY (`id`);

My table is attendance. When I load the page I want only the details of a given date (not all the records available in the table), in the gridview in admin page. How do I get that. Thank u in advance! :)

Viewing all articles
Browse latest Browse all 18717

Trending Articles