i using the jqgrid
. i have to do a simple calculation on EDIT and ADD modal dialog with text boxes , i have to get a value from one text box and i have to divide by 8 then i have to show an another textbox . I can able get the id
of the textboxes (Not value ) . Then i try to alert the value of that text box ,but its not working ..
i try the following script
$(document).ready(function() {
$("#editmodmyFirstGrid").on("change", '#pds', function(event) {
alert('value is entered');
});
});
here #editmodmyFirstGrid
is an id of the edit dialogue box , and #pds
is assigned to text box id.