Thank you but i didn’t get source of that grid also exactly what i need I have Four field
1)View
2)Delete
3)Edit
4)Print
These four option i want to Show on Action Column of jQxGrid Which used by Select like this
var renderlist = function (row, column, value) {
var buildList = ‘<select id=”Select’ + row + ‘” onChange=”selectionChanged(event)”>’;
for (var i = 0; i < productNames.length; i++) {
if (value == productNames[i]) {
buildList += ‘<option selected=”true”>’ + productNames[i] + ‘</option>’;
}
else {
buildList += ‘<option>’ + productNames[i] + ‘</option>’;
}
}
buildList += ‘</select>’;
return buildList;
}
And These options are static not dynamic.
On Selection Change Event I want to perform task by their related function.
Even i am success to do this and working fine in previous version of Jqxgrid but here new updated version sucked us and getting problem on this dropdwon select please help me out its urgent.
Thanks and Regard
Meharwan Singh