BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
$(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
}
|