1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
function ClickHandling(table) {
if (table == "top") {
$("#TopTable tbody tr").on('click', function (e) {
$.ajax({
url: "Home/SetSelectedIndex",
data: { index: this.rowIndex },
cache: false,
type: "GET",
timeout: 10000,
success: function (result) {
RefreshTable("#BotTable", "/Home/GetBotTable", "bot");
}
});
});
}
else if (table == "bot") {
$('#BotTable tbody tr').on('dblclick', function () {
$.ajax({
url: "Home/ChangeState",
data: { index: this.rowIndex },
type: "GET",
success: function (result) {
RefreshTable("#BotTable", "/Home/GetBotTable", "bot");
}
});
});
}
} |
Partager