-
Notifications
You must be signed in to change notification settings - Fork 54
Open
Description
I'm using a table and I'm unable to get the "selection" binding working. Is there some other binding that should be used instead?
uki({
id: 'tbl',
view: 'Table',
rect: '10 10 100 500',
anchors: 'top right left bottom',
columns : [
{ view : "table.CustomColumn", label: 'hello', width : 100},
],
rowHeight: 22,
data: []
}).attachTo( window, '1010 1010' );
var data = [];
for(var i = 0; i < 100; i += 1)
data.push(["world " + i]);
uki("#tbl").data(data);
uki("#tbl").bind("selection", function(){
console.log("selection changed");
});```Metadata
Metadata
Assignees
Labels
No labels