Telerik.Web.Mvc.GridActionAttribute.Prefix C# (CSharp) Method

Prefix() private method

private Prefix ( string key ) : string
key string
return string
        private string Prefix(string key)
        {
            if (GridName.HasValue())
            {
                return GridName + "-" + key;
            }

            return key;
        }