Hi
I have defined below dropdown list but i want Values should be saved as 0,1,2
static List lst = new List() { "Monthly", "Quarterly", "HALF YEARLY", "YEARLY" };
public Incentives_Period()
{
}
public static List InCentivesPeriod
{
get
{
return lst;
}
}
Thanks
Amit MohantyPosted Aug 26, 2024, 11:19 AM
Try this:
Jithu ThomasPosted Aug 26, 2024, 11:21 AM
Define a Class for the Dropdown Items
Populate the List with Objects
Usage: -