次のコードは期待どおりに機能しましたが、ページング クリックでは引き続き実行され、「最初にレコードを選択してから、このボタンを押してください」というメッセージが表示されます。エクスポートボタンをクリックしない限り、これを防ぐ方法はありますか。ありがとうございました
$(document).ready(function () {
$("#Product").on("click",function(){
var $exportLink = $('#export');
var href = $exportLink.attr('href');
var grid = $('#Product').data('kendoGrid'); //get a reference to the grid data
var record = grid.dataItem(grid.select()); //get a reference to the currently selected row
if(record !=null)
{
href = href.replace(/refId=([^&]*)/, 'refId='+record.ID);
$exportLink.attr('href', href);
}
else
{
alert("Please select a record first, then press this button")
return false;
}
});
});