I need to add a bead to all Table objects in our application, but not to Table
objects contained within another specific css class. So in our css I’ve defined
j|Table {
IBeadView: ClassReference("classes.beads.GridLikeTableView");
}
But now I find that tables in a calendar are also affected, which is
unintended. So I tried adding before that
.datechooser j|Table {
IBeadView: ClassReference("org.apache.royale.jewel.beads.views.TableView");
}
But that affects all Table objects whether or not they’re contained in a
.datachooser class. Any ideas how to be more surgical about adding beads?