Beispiel #1
0
        static bool IsDefaultValueMatched(IControl row, String value)
        {
            if (String.IsNullOrEmpty(value))
            {
                return(true);
            }
            IControl radioButton = WebTableUtilities.GetElement(row, String.Empty, 2, TableColumnContentType.RadioButton);

            return(Control_PropertyUtilities.VerifyAttributeValue(radioButton, "checked", "true"));
        }