在將自己的kendo-ui網格移動到自舉模式中之前,我會點擊添加行,並選擇3個輸入中的第一個。然後,我會選擇第二,然後第三,然後選擇複選框按鈕,我會按下輸入,行將被添加。然後焦點返回到添加行按鈕,我可以按Enter鍵以重新開始處理。那麼現在它是在一個模式中,我失去了一切,除了Tab鍵。我找到了使用jQuery來應用焦點的解決方案,但是我已經在我的網格控制器中使用了它。如何將輸入焦點設置爲自舉模式下的kendo-ui網格輸入
劍道的UI網格控制器
$scope.mainGridOptions = {
dataSource: dataSource,
pageable: false,
toolbar: [{ name: "create", text: "Add Product", }],
columns: [
{ field: "product", title: "Product", width: "95px", editor: productEditor },
{
field: "price", title: "Price", width: "95px", format: "{0:c2}", editor: priceEditor
},
{
field: "sqft", title: "Square Feet", width: "95px", editor: sqftEditor
},
{
command: [{ name: 'edit', text: { edit: '', update: '', cancel: '' }, width: '20px' }, { name: 'destroy', text: '' }], title: ' ', width: '80px'
}],
editable: 'inline'
};
function productEditor(container, options) {
$('<input id="product" name="product" data-bind="value:product" data-productvalidation-msg="Put the Product!" />')
.appendTo(container)
.kendoMaskedTextBox({});
$("#product").focus(function() {
var input = $(this);
setTimeout(function() {
input.select();
});
});
};
function priceEditor(container, options) {
$('<input id="price" name="price" data-bind="value:price" data-step="10000" style="" data-productvalidation-msg="Put the Price!"/>')
.appendTo(container)
.kendoNumericTextBox({ format: 'c0', min: 0 });
$("#price").focus(function() {
var input = $(this);
setTimeout(function() {
input.select();
});
});
}
function sqftEditor(container, options) {
$('<input id="sqft" name="sqft" data-bind="value:sqft" data-step="500" style="" data-productvalidation-msg="Put the Sqft!"/>')
.appendTo(container)
.kendoNumericTextBox({ format: '0', min: 0 });
$("#sqft").focus(function() {
var input = $(this);
setTimeout(function() {
input.select();
});
});
};
模態
<!-- Grid Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<div style="width:100%"><span class="modal-label">My Product Data</span><button style="float:right" class="btn btn-custom waves-effect" data-dismiss="modal"><i class="zmdi zmdi-close"></i></button></div>
</div>
<div class="modal-body">
<div kendo-grid id="grid" options="mainGridOptions"></div>
</div>
</div>
</div>
</div><!--End Grid Modal -->
函數打開模態
$scope.openGrid = function() {
$('#myModal').modal('show');
};
嘗試刪除輔助標記屬性['role = document'](http://www.w3.org/TR/wai-aria/roles#document),看看是否是wh在導致這個問題。 ['角色= application'](HTTP://www.w3。org/TR/wai-aria/roles#application)可能更具相關性。 – Andrew