USP_DATALIST_CSSCLASSES

Returns Styles for a content type.

Parameters

Parameter Parameter Type Mode Description
@CONTENTTYPEID int IN Content Type ID

Definition

Copy


CREATE procedure dbo.USP_DATALIST_CSSCLASSES(@CONTENTTYPEID integer = 130) with execute as owner
as
    set nocount on;

    select 
           CLASSNAME,
       BBDEFAULTCSS
    from dbo.CSSCLASSES
    where CONTENTTYPEID = @CONTENTTYPEID