Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
300
Change cell value when exiting another cell
posted

When I have a user that filled in a cell, say with a employee number and clicks tab, then I need my SSN and Name fields to populate. I have gotten the value using the blur event. I can use that to AJAX out the data I need and fill the other 2 columns. I just can't figure out how to call and populate these other columns. I can't seem to get a reference to them and assign a value.

Parents
  • 300
    Suggested Answer
    posted

    I figured out one issue.

    var name = $("#TSDefaultGrid").igGridUpdating("editorForKey", "Name");
    $(name).igEditor("value", 'This is a name');

    THe only other one I have with this is how to move to the next field they need to input a value to. So after they leave empid then I need to go to occode since I have autofilled name and ssn.

Reply Children
No Data