Hi Emanuel,
I tried this code:
I tried this code:
public
class
MyFADatePickerCol: GridViewDateTimeColumn
{
public
override
Type GetDefaultEditorType()
{
// return the type of your editor here
FADatePicker f=new FADatePciker;
returtn f.GetType();
}
public MyFADatePickerCol():base("Col1")
{
}
}
MyFADatePickerCol mycol=new MyFADatePickerCol();
radGridView1.Columns.Add(mycol);
But FADatePicker does not appear in the Grid.
I Also want to have a textboxcolumn which has an ellipsis button '...' inside it. Please send the code to me.
Please help me.