Re: setting row and cell color in entity selection listboxes

2021-08-10 Thread Keisuke Miyako via 4D_Tech
for clarification: the reason for using the Form object, as in Form.meta, is to be memory efficient. if you only have 3 possible paint patterns, it would be more efficient to create the objects in advance: e.g. $meta:=New collection(New object;New object;New object;New object;New object;New

Re: setting row and cell color in entity selection listboxes

2021-08-10 Thread Michael Ferguson via 4D_Tech
Thanks, Miyako, So, this works: //form method Case of :(Form event=On Load ) Form .meta:=New object End case //Color

Re: setting row and cell color in entity selection listboxes

2021-08-10 Thread Keisuke Miyako via 4D_Tech
I activated on display detail. activating On Display Detail is optional. it is not required for Meta Exp. to work. but your Color method is wrong. you basically need as many meta objects as the number of different colour combinations to display at the same time. in your code you have just