Exemple #1
0
        protected override string GetClientSideScriptOptions()
        {
            string retVal = base.GetClientSideScriptOptions();

            if (!string.IsNullOrEmpty(CtrlKeys))
            {
                if (!string.IsNullOrEmpty(retVal))
                {
                    retVal += ",";
                }
                retVal += "keys:'" + CtrlKeys.ToUpper().Replace(" ", "") + "'";
            }
            return(retVal);
        }