Applying Styles To ListItems in CheckBoxList

前端 未结 6 1590
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-28 14:15

How can styles be applied to CheckBoxList ListItems. Unlike other controls, such as the Repeater where you can specify , you can\'t seem to sp

6条回答
  •  遥遥无期
    2020-11-28 14:56

    public bool Repeater_Bind()
    {
        RadioButtonList objRadioButton = (RadioButtonList)eventArgs.Item.FindControl("rbList");
        if (curQuestionInfo.CorrectAnswer != -1) {
            objRadioButton.Items[curQuestionInfo.CorrectAnswer].Attributes.Add("Style", "color: #b4fbb1;");
        }
    }
    

提交回复
热议问题