Hey Mike
I was trying out v0.3.42,and wanted to do something simple like filter by name,the paginator returns the TotalItemCount but the Datasource doesn't display the results.
CREATE TABLE `test` (
`ID` int(5) NOT NULL auto_increment,
`Name` varchar(30) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `test`
--
INSERT INTO `test` VALUES (1, 'Mputhumi');
INSERT INTO `test` VALUES (2, 'Tsele');
INSERT INTO `test` VALUES (3, 'Nokuthula');
INSERT INTO `test` VALUES (4, 'Mia');