New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
$(function () {
$("#Grid").ejGrid({
dataSource: data,
columns: [
-------
],
actionBegin: "actionBegin",
rowSelected: "rowSelected",
rowDeselected: "rowDeselected",
});
});
function actionBegin(args) {
if(args.requestType == "paging") {
//hide element
}
}
function rowSelected(args) {
//check condition and show element if the condition satisfied
}
function rowDeselected(args) {
//hide element
}
|