I have the following code executing Java script that sets the right justification of the column header in the WebListBox when needed:
ExecuteJavaScript("var header = document.querySelector('#" + DataSourcesListBox.ControlID + " thead th:nth-child(" + pColNum.ToString + ")');if (header) { header.classList.add('text-end'); }")
The above code is called when the thread completes fetching data. This works as expected in Xojo2025R1 - I get the column header right justified.
However, in Xojo2025R1.1 the column header does not get right justified.
Note: the data in the column is right justified but that is handled separately in DataSource.DataRow method - this works as expected in both releases of Xojo.
Any suggestions as to what could be making the difference?