I have a block in my AppPropertyEditBlocks that grabs a list of data from
the database, which works fine. The problem happens if I modify what should
be in that list (say I add another row to the db), the edit block doesn't
update it's list. I currently am populating the list in the pageLoaded
method:

void pageLoaded()
{
    _allCategories = _categoryDAO.findAll();
}

Any idea what I can do to fix this?

Peter Beshai

Reply via email to