Custom Tile creation help

I’m working on a custom tile in the Constituent Summary page. The data displays correctly, but I’m unable to adjust the size, spacing, or position of the <ul> elements within the tile. It seems like the tile is not accepting the CSS rules I apply for layout changes, including margins, padding, and alignment. I’m looking for guidance on why these UI modifications aren’t taking effect and how to properly style or control the layout inside the tile.

i would like to display standard font and header - simple tile display

Example:

image.png image.png

Answers

  • Hello guys, I have created this example custom tile in my local dev env and deployed full dll and html code but not sure why no data display

    Create a Constituent Tile

    image.png

    i checked this SQL

    set @REGISTRATIONS = (
    select top 15
    REGISTRANT.ID as REGISTRANTID,
    EVENT.NAME as EVENTNAME,
    REGISTRANT.ISWALKIN,
    EVENT.STARTDATE,
    case
    when REGISTRANT.ISCANCELLED = 1 then 2
    when REGISTRANT.WILLNOTATTEND = 1 then 0
    else 1
    end as STATUSCODE,
    EVENTPRICE.NAME as REGISTRATIONOPTIONNAME
    from dbo.REGISTRANT
    inner join dbo.EVENT on
    REGISTRANT.EVENTID = EVENT.ID
    left join dbo.REGISTRANTREGISTRATIONMAP on
    REGISTRANT.ID = REGISTRANTREGISTRATIONMAP.REGISTRANTID
    left join dbo.REGISTRANTREGISTRATION on
    REGISTRANTREGISTRATIONMAP.REGISTRANTREGISTRATIONID = REGISTRANTREGISTRATION.ID
    left join dbo.EVENTPRICE on
    REGISTRANTREGISTRATION.EVENTPRICEID = EVENTPRICE.ID
    where
    REGISTRANT.CONSTITUENTID = @ID and
    EVENT.PROGRAMID is null
    for xml raw('ITEM'),type,elements,root('REGISTRATIONS'),BINARY BASE64
    );

    <REGISTRATIONS>
    <ITEM>
    <REGISTRANTID>DB8714FB-563C-4FDA-BA97-A37304DE5F19</REGISTRANTID>
    <CONSTITUENTID>1D8D7312-E2C7-439F-9252-41F5BFE1DDDE</CONSTITUENTID>
    <EVENTNAME>Fire Prevention</EVENTNAME>
    <ISWALKIN>0</ISWALKIN>
    <STARTDATE>2003-12-06</STARTDATE>
    <STATUSCODE>1</STATUSCODE>
    </ITEM>
    <ITEM>
    <REGISTRANTID>C2C06BAF-B1CD-4EB3-9481-2644337750C4</REGISTRANTID>
    <CONSTITUENTID>1D8D7312-E2C7-439F-9252-41F5BFE1DDDE</CONSTITUENTID>
    <EVENTNAME>CPR Training Session</EVENTNAME>
    <ISWALKIN>0</ISWALKIN>
    <STARTDATE>2004-07-10</STARTDATE>
    <STATUSCODE>1</STATUSCODE>
    </ITEM>
    <ITEM>
    <REGISTRANTID>D575D688-B8D7-412E-8BF7-02D900B9D9BB</REGISTRANTID>
    <CONSTITUENTID>1D8D7312-E2C7-439F-9252-41F5BFE1DDDE</CONSTITUENTID>
    <EVENTNAME>Volunteer Dinner</EVENTNAME>
    <ISWALKIN>0</ISWALKIN>
    <STARTDATE>2006-12-16</STARTDATE>
    <STATUSCODE>1</STATUSCODE>
    </ITEM>
    <ITEM>
    <REGISTRANTID>E3D4A1AE-7F8C-4967-9CD4-0C14E6D4AAA2</REGISTRANTID>
    <CONSTITUENTID>1D8D7312-E2C7-439F-9252-41F5BFE1DDDE</CONSTITUENTID>
    <EVENTNAME>Playground Grand Opening Party</EVENTNAME>
    <ISWALKIN>0</ISWALKIN>
    <STARTDATE>2004-09-28</STARTDATE>
    <STATUSCODE>1</STATUSCODE>
    </ITEM>
    </REGISTRATIONS>