Jump to content


Photo

NextDBGrid6 with Checkbox Column


  • Please log in to reply
No replies to this topic

#1 mcinternet

mcinternet
  • Members
  • 101 posts
  • Gender:Male

Posted 13 August 2019 - 06:10 PM

Hi,

 

I have a testtable with a few types of boolean. - MySQL and I work with mydac from devart.

CREATE TABLE `systesttable` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `Bezeichnung` varchar(45) DEFAULT NULL,
  `bol1` tinyint(1) DEFAULT '0',
  `bol2` enum('yes','no') DEFAULT 'no' COMMENT 'Hier wird mit 0 = false und true = 1 gearbeitet',
  `bol3` enum('true','false') DEFAULT 'false',
  PRIMARY KEY (`ID`),
  UNIQUE KEY `ID_UNIQUE` (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Diese Table dient nur Tests während der Entwicklung und enthält keine vom Programm genutzte Daten';

how to get this in a Checkbox Column, so that I only have to click for check and not checked. That does not work.

 

 

regards

 

Jörg alias mcinternet






1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users