Trying to force a child grid into in-line edit mode based upong a rowclick on the client.
Using rowclick fires for the parent grid (really don't want that to happen) and I get a Javascript "Object Required" error when I click on the child grid row. The JS function I'm using looks like this:
Using rowclick fires for the parent grid (really don't want that to happen) and I get a Javascript "Object Required" error when I click on the child grid row. The JS function I'm using looks like this:
<
script type="text/javascript">
function RowClick(sender, eventArgs) {
alert("Click on row instance: " + eventArgs.get_itemIndexHierarchical());
sender.get_masterTableView().editItem(eventArgs.get_itemIndexHierarchical());
}
</script>
How can I stop the click on the parent and actually have it not generate and start the in-line edit on the client?