セル コンテンツの選択は、数値テキスト ボックス (Kendo NumericTextBox コントロールとして内部的に処理されます) では正常に機能しますが、何らかの理由で、プレーン テキスト ボックス列では機能しません。添付されているのは、問題をデモする jsfiddle です。
http://jsfiddle.net/latenightcoder/TrJVK/86
これは、重要なグリッド設定のコードです。
edit: function (e) {
var input = e.container.find("input");
input.focus(function (e) {
console.log('focus');
setTimeout(function () {
input.select();
});
});
}