I need some help with adding/editing records in a table that contains a column related to another table.
I have a series of tables which will contain about 5,000-10,000 rows. The tables contain the tasks that people have worked on or calls made, etc. New rows added to a table have to contain a valid ID for a person. Of course it isn't reasonable to ask the data entry person to know every ID, so they will enter a Last Name and then I want the system to offer them a choice of people and on selection, record the ID number of the person chosen in the grid.
Rows might also be updated to change the person chosen.
The trouble is that the list of people who might possibly be used will grow very long over time, possibly drawn from as many as 10,000 people or more. For this reason, I don't want to use a drop down box. I want to use a plain text field to enter the last name and have the user prompted in some way to select the correct person (by first name or company).
In a Windows Forms app, I would use a simple pop-up window to present the choices and when the pop-up was closed, check that a selection had been made and if so, record the ID in the appropriate column.
I understand that pop-ups can be problematic in Web Forms, but is it possible using the Telerik Grid (AJAX preferably) to do something that would achieve the same effect if a pop-up won't be possible?
Thanks,
Simon