hi,
Is Excel Data list / Active x controls functionality supported by Aspose.Web.Grid.
Please verify the attachment and give your suggestion to implement this.
Thanks,
gunasekaran Sambandhan
hi,
Is Excel Data list / Active x controls functionality supported by Aspose.Web.Grid.
Please verify the attachment and give your suggestion to implement this.
Thanks,
gunasekaran Sambandhan
Hi,
Well, Aspose.Grid.Web control does not support to insert Drop down list control separately as the control does not support to insert the drop down list control. But, I think you may try to use List Data Validation to insert drop down list control to the GridWeb's cell. See the reference demo:
I have also written the sample code here for your reference:
protected void Page_Load(object sender, EventArgs e)
{
WebWorksheets sheets = GridWeb1.WebWorksheets;
WebCells cells = sheets[0].Cells;
// DropDownList.
WebCell cell = cells["A1"];
cell.CreateValidation(ValidationType.DropDownList, true);
cell.Validation.ValueList.Add("1");
cell.Validation.ValueList.Add("2");
cell.Validation.ValueList.Add("3");
cell.Validation.ValueList.Add("4");
cell.Validation.ValueList.Add("5");
cell.Validation.ValueList.Add("6");
}
Thank you.