maybe I'm just to stupid..
Problem: changing DSLOCALESELECTOR inclusion in my skin.ascx to:
<dnn:DSLOCALESELECTOR runat=server id=dnnDSLOCALESELECTOR DisplayControl="Links" LinksSeparator=" | " LinkTemplate="<a href=[URL]>[TwoLetterISO]</a>" />
continuous showing up the Selector as ComboBox.. -> the HTML output is:
<select name="dnn:dnnDSLOCALESELECTOR:lstAvailableLanguages" onchange=" setTimeout('__doPostBack(\'dnn$dnnDSLOCALESELECTOR$lstAvailableLanguages\',\'\')', 0)" language="javascript" id="dnn_dnnDSLOCALESELECTOR_lstAvailableLanguages" class="DSLocaleSelectorPA-DDLSelector">
<option selected="selected" value="de-CH">Deutsch (Schweiz)</option>
<option value="fr-CH">Français (Suisse)</option>
</select>
What I expected:
I supposed adding DisplayControl="Links" as the only custom attribute (to omit formating errors) should already change the display behaviour.. the module unsing default property values.
<dnn:DSLOCALESELECTOR runat=server id=dnnDSLOCALESELECTOR DisplayControl="Links" /> -> same result.
Including the DSLocaleSelectorPA as a Module and configuring through the "Locale Selector options Menu" shows it as List as expected. -> HTML output:
<span id="dnn_ctr1254_DSLocaleSelectorPA_lblLinks">Français (Suisse)Italiano (Svizzera)</span>
I use DNN4.4.1 / Delisoft.DSLocalizator.DNN3.01.00.23-PA
Any hint would be very much appreciated!
Thanks in advance, Markus