Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

parenResized does not execute

$
0
0
v10.0d and v9.1

Not sure if this is a bug or I am doing something wrong but I can not seem to catch parentResized event in this code. Resizing Window triggers "resized" event but not "parentResized" on a child

Code:


isc.Window.create({
        canDragResize:true,
        resized: function(){
                alert("resized executed")
        },
        items:[
                isc.Canvas.create({
                        parentResized: function(){
                                alert("parentResized executed")
                        }
                })
        ]
})


Viewing all articles
Browse latest Browse all 4756

Trending Articles