09-03-2008 02:28 AM
I am developing one listField. In which I want to add checkBox image, Labelfield and Again one Arrow image.
Is it possible to add controls to the Listfield.
I am new to BB can anyone please explain me?
09-03-2008 02:36 AM
You may override drawListRow() method of ListFieldCallback instance to draw checked and unchecked checkbox character depending on your row state. These characters are defined in Caracters class.
Also you may use method setRowHeight() of ListField class instance to set every row height in pixels.
Inside of drawListRow() use graphics context to draw anything you want. This method invokes to draw every list row.
09-03-2008 03:59 AM