How come this works:
lA = new List(List.ORDERED, List.ALPHABETICAL);
lA.setLowercase(List.LOWERCASE);
lA.setPostSymbol(") ");
but this doesn't:
lQL = new List(List.UNORDERED);
lQL.setListSymbol("=");
lQL.setPostSymbol(" ");
?
In the first example in front of every item is "a) " or "b) " or "c) " etc... In the second example in front of every item is only "=".
Before any ideas, two things. Firstly, I can't do it this way: lQL.setListSymbol("= ");
. I could explain it, but just go with it, it's simpler. Secondly, I tried setting second string to "k " (so it's not only spaces), but the output was still "="...
What's happening?