Add extra date column to Notes grid
I want to add another date column to the Contacts notes grid.
Getting a compile error "FarPoint.Win.Spread.CellType.DateTimeCellType is a 'type' which is not valid in the given context".
What's the correct celltype?
- Code: Select all
public void Setup(JiwaFinancials.Jiwa.JiwaApplication.IJiwaForm JiwaForm, JiwaFinancials.Jiwa.JiwaApplication.Plugin.Plugin Plugin)
{
if (JiwaForm is JiwaFinancials.Jiwa.JiwaContactsUI.frmContact)
{
JiwaFinancials.Jiwa.JiwaContactsUI.frmContact contactForm = (JiwaFinancials.Jiwa.JiwaContactsUI.frmContact)JiwaForm;
contactForm.grdNotes.AddColumn("InteractDate",FarPoint.Win.Spread.CellType.DateTimeCellType, "Date Interaction",10,false,true,true,false,20,false,false,0,false,false);
}
}
Getting a compile error "FarPoint.Win.Spread.CellType.DateTimeCellType is a 'type' which is not valid in the given context".
What's the correct celltype?