Click here to Skip to main content
15,905,316 members

Comments by Member 13658833 (Top 6 by date)

Member 13658833 10-Feb-18 0:36am View    
i'm already use another style from this link http://vitalets.github.io/combodate/
but my form control styles are not working for those elements,and i do not know from where that css is coming,how can i found that location which is seen in inspect page
Member 13658833 9-Feb-18 7:55am View    
thank you but i want scroll option for display every minute from 00 to 59 by using jQuery
Member 13658833 6-Feb-18 5:50am View    
Thank you very much
Member 13658833 5-Feb-18 6:59am View    
Thank you very much sir for your replay.
sir,cloud please explain how to store radio button checked values in a list after submit button click
i'm very much new to this so,please explain clearly like above
what i'm tried in back end is
protected void CheckChanged(object sender, EventArgs e)
{
string value=null;
//on each item checked, remove any other items checked
foreach (RepeaterItem item in QuestionRepeater.Items)
{
RadioButton rb1 = ((RadioButton)item.FindControl("rb1"));
RadioButton rb2 = ((RadioButton)item.FindControl("rb2"));
RadioButton rb3 = ((RadioButton)item.FindControl("rb3"));
RadioButton rb4 = ((RadioButton)item.FindControl("rb4"));
if (rb1.Checked)
{
value = rb1.Text;
}
else if (rb2.Checked)
{
value = rb2.Text;
}
else if (rb3.Checked)
{
value = rb3.Text;
}
else if(rb4.Checked)
{
value = rb4.Text;
}
}
Member 13658833 5-Feb-18 4:37am View    
hi friend i'm also develop same logic but i don't know how to get selected radio button value, i'm using repeater control in front end page by reading data dynamically
cloud you please help me this out
please explain how you implement this