In the report designer, I have an HtmlTextBox
In the textbox, I have an ordered list.
I need to change the numbering of the list to start at a value other than 1.
Looking on line, this can be done either by setting the "start" attribute on the OL tag, or the "value" attribute on the LI tag.
<ol start="10">
<li value="10">
I've tried both of those, but it doesn't work. It shows my new starting number in the HTML Value designer, but when I click OK and go back to the report designer, it still starts at 1.