I typically set the column headers for a grid via the code behind:
this.dgMaster.Columns[COL_CONTRACT_HEADER].HeaderText = ApplicationTerm.GetApplicationTerm(MODULE, "txtContractNumber");
How can I use this same technique to set the headers in the DetailTableView?
If I set them in the bind event for the detail items, it works fine....until I expand another row, at which point the new row is fine but all the headers disappear from the other expanded rows.
Thank you in advance.
this.dgMaster.Columns[COL_CONTRACT_HEADER].HeaderText = ApplicationTerm.GetApplicationTerm(MODULE, "txtContractNumber");
How can I use this same technique to set the headers in the DetailTableView?
If I set them in the bind event for the detail items, it works fine....until I expand another row, at which point the new row is fine but all the headers disappear from the other expanded rows.
Thank you in advance.