Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Icons in ListGrid Header

    Using SC 8.2

    Is it possible to add an icon next to my label in the ListGrid header? Seems like it should be, but I can't seem to find it in the documentation.

    Thanks.

    #2
    Figured it out just as soon as I posted it.

    it's in the field:
    Code:
    isc.ListGrid.create({
    fields: [ {
      name: "foo",
      title: "Foo",
      icon: "/images/foo.png"
    },
    ...

    Comment

    Working...
    X