Fill DataGrid (Form) with graphics
Posted: Wed Jan 30, 2019 10:54 pm
Hi,
I created a Data Grid with some informations. This informations are loaded with FillInData without any problems.
Know I startet to create a graphic (oval dot) in the DataGrid Template. This is also working, I see this in each row. The informations are stored in pDataArray["status"] and I see them also. It is also possible to add the informations to a text field in each row without any problem.
But... in the case that I start a condition in FillInData it is not working, sometimes I see the dot, sometimes not. But why? The pDataArray["status"] is correct in each row, I have really no Idea.
I have the same issue if I set a color to the oval dot.
Thanks
Stefan
I created a Data Grid with some informations. This informations are loaded with FillInData without any problems.
Know I startet to create a graphic (oval dot) in the DataGrid Template. This is also working, I see this in each row. The informations are stored in pDataArray["status"] and I see them also. It is also possible to add the informations to a text field in each row without any problem.
But... in the case that I start a condition in FillInData it is not working, sometimes I see the dot, sometimes not. But why? The pDataArray["status"] is correct in each row, I have really no Idea.
Code: Select all
if pDataArray["status"] is empty then
set the visible of graphic "status_oval" to true
else
set the visible of graphic "status_oval" to false
end if
Thanks
Stefan