Question

I can never remember if I have to implement an interface on the page or the info, or if I have to override something. I want it here so I don't have to dig up an old solution. Also, is this information available anywhere in EWL comments or on the EWL web site?

Était-ce utile?

La solution

You need to implement TabModeOverrider from your entity setup's Info class:

partial class Info: TabModeOverrider {
    TabMode TabModeOverrider.GetTabMode() {
        return TabMode.Horizontal;
    }
}

I don't think this is documented anywhere else right now.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top