I have a custom editor for looking up objects. Instead of a dropdown, I show a search icon that opens a modal window. The user then searches for a record in that modal window and clicks a row. My modal lookup window then closes, and I am now in a javascript function in my custom editor with the selected object from the modal lookup window.
But now, how do I get the selected row from the grid and update the new values into it? For example, the user picked an object, but now I need to set the Id (hidden) and Name (visible) into the grid.
But now, how do I get the selected row from the grid and update the new values into it? For example, the user picked an object, but now I need to set the Id (hidden) and Name (visible) into the grid.