How to Get Developer Name in Poll Widgets
In this code that i taken from below site..
www.sitefinity.com/.../poll-widget-
i configure as see in this above link.
but i have small dought how can i get Devleoper Name in Code. because this Code put static value, from that value i have to put dynamic value, so how can i change that..
Hello Ketan,
You can get all controls in the form you reference in the poll widget, iterate the form controls and get or set the name for developers of the one you like the following way:
if
(!SystemManager.IsDesignMode)
//retrieve the checkbox control from the list of controls in the form
foreach
(
object
control
in
base
.FormControls.Controls[1].Controls)
if
(control.GetType() ==
typeof
(FormCheckboxes))
FormCheckboxes checkBoxControl = control
as
FormCheckboxes;
string
nameForDev = checkBoxControl.DataFieldName;