After conducting thorough research, I find myself unsure of the best course of action. My situation involves a Kendo Grid (table) with 3 rows and 3 columns. Initially, the table displays only the first column, populated upon the page's initial load. Subsequently, an AJAX method is triggered to fetch additional data, replacing the entire table with new HTML.
----------------
| 01 | | |
| 02 | | |
| 03 | | |
----------------
The replaced HTML results in a table structure like this:
----------------
| 01 | hi | gr |
| 02 | hi | sd |
| 03 | fe | sf |
----------------
My goal now is to somehow overlay a square onto the empty columns within the initially incomplete table (with only the first column populated), allowing me to center a message within this square.
What approach do you suggest for achieving this task effectively?