Hi
how does one nest Easy components?
I need a window (or maybe a dialog?) with a autofit grid in it. I don't want to markup the attributes in html, but rather javascript/jquery.
I didn't see an "items" or "components" attribute for say a window.
I tried something like:
$('#ss').spinner({
required:true,
increment:10
});
$('#divAdmin').window({
title: 'Dialog',
width: 400,
height: 200,
modal: true
});
<div id="divAdmin">
<input id="ss" value="2"/>
</div>
but this doesn't show or size automatically. Or do i bind the additional components at window create/show time ?
thanks