textColor not working in DataGrid?
Posted: Sun Nov 17, 2013 7:31 pm
I'm trying to set colour of the text in DataGrid in FillInData handler, and it doesn't work. In the same handler I can change the style of text in DataGrid:
Is it the bug, or I do some mistake?
Marek
Code: Select all
on FillInData pData
set the uText of me to pData
set the text of me to the uText of me
set the textStyle of me to "bold" --> working
set the textColor of me to 0,255,0 --> doesn't work
set the textColor of me to "red" --> doesn't work
TruncateTail the short id of me, "..."
end FillInData
Marek