Toolbar - setstyle on individual list options

Is there any way of dynamically setting, for instance, backgroundcolor to individual list options?

There isn’t a public method to set item style. You may try to use the following method:

var item = toolbar.objPull[toolbar.idPrefix+itemId].obj;
item.style.backgroundColor = “…”;

Here toolbar is toolbar object and itemId is id a certain item

Thanks a lot!