I have an administrative webpage that has a customer search feature. I type the name and a table of matching customers (and a limited amount of pertinent data for each) is injected on to the page using ajax. I would like to be able to click on a customer (a row) and have the customer's profile show up. The profile may include multiple elements, forms, buttons, and complex functions.
Instead of having this profile be on a separate page or something, I would like it to be injected right in the spot that i clicked (below the customer's row), and then close back up when I'm done with it.
I have tried adding these elements to the DOM, but anything between the tags comes in as part of the table (all squished into one cell). Should I split the table somehow first? or not use a table in the first place?
I'm looking for a robust solution because I will need to "insert modules" like this in other parts of the site as well.