I create a colorpicker extender using:
AjaxControlToolkit.ColorPickerExtender cpe = new AjaxControlToolkit.ColorPickerExtender();
cpe.TargetControlID = "textbox1";
cpe.TargetControlID = "cpe1";
cpe.PopupButtonID = "image1";
cpe.SampleControlID = "panel1";
Placeholder1.Controls.Add(cpe);
This works fine. I want to add a popUpPosition as in: cpe.PopupPosition = "BottomRight";
This is obviously incorrect. Can someone provide the proper syntax for adding the PopupPosition.
Thanks
Go to the complete details ...