protected string GetDisplayText(object obj)
    {
        LOV_Culture row  = (LOV_Culture)obj;
        string      text = row.Name;

        return(text);
    }
    protected string GetCommandArgument(object obj)
    {
        LOV_Culture row         = (LOV_Culture)obj;
        string      cultureCode = row.Code;

        return(cultureCode);
    }