You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@liebehentze I've been struggling to get content shown of my FXMLView based component, when it's included via FXML. I've found a solution (and, after then I have actually discovered this issue and #29) to just add view in constructor:
import com.airhacks.afterburner.views.FXMLView;
public class MyComponentView extends FXMLView {
public MyComponentView() {
this.getChildren().setAll(getView());
}
}
Is it still wip? See #29. Would make developing much faster.
The text was updated successfully, but these errors were encountered: