<ul> tag in view Treat view contents as html

Hy,

i have a problem with a view that have this columns:

1 column categorized hidden

2 column Object

3 column

    in the column formula

    4 column Details

    5 column

in the column formula

Column 4 must be a

  • of Object, but i don’t know how

    i tried with this column formula in column 3:

    @If (form = “convocazione”; @If(@Contains(sconvocata; “Sconvocata”); sconvocata;oggettopl); @If(stato= “chiusa”;"

  • a
  • ";

    stato= “aperta”;“

  • b
  • ”;

    stato= “sospesa”;"

  • c
  • ";

    stato= “ripresa”;“

  • d
  • “;””)) +

    @If(apertura = “”; “”; @Text(@Time(apertura);“T1”))

    the results now is

    Object

    • a
    • b
    • c
    • d

    where may i put the UL tag for this results?

    Object

    • a
    • b
    • c
    • d

    Thanks in advance for help!!

    Subject:

      tag in view Treat view contents as html

      Is column 2 categorized?The formula you gave is really in column 4, not 3, correct?

      In the output you show, are a, b, c and d four separate documents?

      It looks like you expect to see some documents that are not in the list (because you have an @If in your formula that prints something other than

    • … for some documents. Also you add a time to the end of some items, and that is not inside the list. How would that work?

      The problem is that you have more than one document, and you are trying to put the

        only before the first document and
      only after the last document. But there is no way to test in a view row whether that row is the first one or the last one. The row can only display information about the current document – not about its relationship to other documents in the view.

      Perhaps, instead of using a list tag, you could use CSS to create indentation and a bullet on the lines that are supposed to be in the list.

    Subject: RE:

      tag in view Treat view contents as html

      thank you, i search the correct response using css!