In your for event handler, check for the tblEnterEvent and if the column
tapped is the
one which shouldn't be highlighted, do some job if you need to
(tblSelectEvent will not
be generated) and return 'true' from the handler, otherwise return 'false'.
Example:
if (event->eType == tblEnterEvent) {
if (event.data.tblEnter.column == yourColumn) {
// do somenthing here ....
handled = true;
else
handled = false;
}
Bozidar
> Does anyone have any ideas on making certain columns (may vary
> per row) in a
> table nonselectable so that the column is not highlighted when tapped? I
> cannot use TblSetRowSelectable because I need to there are other
> columns in
> each row that need to be active. I currently use
> TblUnhighlightSelection()
> to quickly unhighlight a column right after it is highlighted, but I don't
> want the column to highlight at all.
>
>
> Thanks for any info.
> -Alex
>
>