您的位置:首页 > 其它

如何让telerikGridView控件变为可输入状态

2011-08-09 15:42 337 查看
telerik的gridview控件如何点击后变为可输入格式

function RowDblClick(sender, eventArgs) {
sender.get_masterTableView().editItem(eventArgs.get_itemIndexHierarchical());
}

界面中添加节点设置
<ClientSettings AllowKeyboardNavigation="true">
<Selecting AllowRowSelect="true"/><KeyboardNavigationSettings EnableKeyboardShortcuts="true" AllowSubmitOnEnter="true" AllowActiveRowCycle="true" FocusKey="g"/><ClientEvents OnRowDblClick="RowDblClick"/><Resizing AllowColumnResize="true"/>
</ClientSettings>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  function