I have a table where certain cells will be nil until the user fills them in, but I was hoping that I could change the null place-holder (i.e. the value it displays when the particular value for that cell is nil
) depending on other parts of the application the user has already filled in or configured. Sort of like an auto-complete but not quite.
Is it possible to bind the null place-holder value or will I have to emulate this behaviour manually?
Edit:
To clarify, I'm looking for a solution to have distinct place-holder values for individual cells, not a single place-holder value to apply to the entire table or entire table column.