I have XSLT where
<xsl:for-each select="$Rows">
<xsl:sort select="@ows_plstx" order="ascending" />
I need to output, where first sort value is defined text value @ows_plstx='specific value' and then xslt sort other @ows_plstx values in ascending order.
Example
First defined @ows_plstx specific value
Other @ows_plstx values
...
...
How can I achieved that? Sorry, I am not very familiar with XSLT.