BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<ej-splitter id="outterSpliter" class="ang-splitter" e-height ="100%" e-width="485" e-properties="proper" e-enableautoresize="true">
However, none of this works. e-properties must be [properties]="proper" in order to work and e-enableautoresize doesn't work in any way at all. What I'm missing?
I checked ej.splitter.min.js file and it's: 14.4.0.20. It does have enableautoresize property.
@Component({
selector: 'step-filters',
templateUrl: 'app/step-filters.component.html',
encapsulation:ViewEncapsulation.None,
styles: ['.mySplitter .e-pane{ width: 100%; height: 100%;background-color: green;}']
})
export class AppComponent {
proper:Array<{paneSize:string}>;
responsive:Boolean;
constructor() {
this.proper = [ { paneSize: "250px", maxSize: "500px", expandable: false }, {paneSize: "auto", minSize: "auto", maxSize: "auto", collapsible: false }];
this.responsive=true;
}
}
//Html file
<div style="width:100%;height:500px;">
<ej-splitter id="mySplitter" cssClass="mySplitter" [properties]="proper" style="display:block;" [isResponsive]="responsive">
</ej-splitter>
<div>
|