-
Notifications
You must be signed in to change notification settings - Fork 92
Open
Description
I've found that a cell/component can be selected by its ID name alone, without using querySelector or the like.
Here, in the keyup function, the first component is selected with myConsole, rather than document.querySelector("#myConsole")
ಠᴥಠ = {
$cell: true,
$components: [{
id: "myConsole"
}, {
$type: "input",
onkeyup: function(e) {
if( e.keyCode === 13 ) { myConsole.$text = this.value; }
}
}
]
}This a nice feature. Maybe it could be mentioned in section 3 of the tutorial.
BTW, thanks for cell.js. I'm a big fan.
Metadata
Metadata
Assignees
Labels
No labels