Formatting issue with multiselect Webcombo

3 replies. Last post: April 28, 2016 3:22 AM by Erwin Sanders
Tags :
  • (None)
Sachin JainMember

Hi,

Multiselect checkboxes have a decimal point before text. What need to put to remove this unwanted decimal points ?

I am attching screenshot and sample code of webcombo. No css is used.

<ISWebCombo:WebCombo ID="wcCity" runat="server" ViewStateStorage="Session" DataMember=""
Height="20px" UseDefaultStyle="True" Width="200px" >
<Columns>
<ISWebCombo:WebComboColumn Name="Column0" />
</Columns>
<MultipleSelectionSettings Enabled="true" />
<LayoutSettings ComboMode="MultipleColumns" TextBoxMode="ReadOnly" AlwaysShowAllRowsOnDropdown="false">
</LayoutSettings>
<Rows>
<ISWebCombo:WebComboRow>
<Cells>
<ISWebCombo:WebComboCell Text="Berlin">
</ISWebCombo:WebComboCell>
</Cells>
</ISWebCombo:WebComboRow>
<ISWebCombo:WebComboRow Position="1">
<Cells>
<ISWebCombo:WebComboCell Text="London">
</ISWebCombo:WebComboCell>
</Cells>
</ISWebCombo:WebComboRow>
<ISWebCombo:WebComboRow Position="2">
<Cells>
<ISWebCombo:WebComboCell Text="M&#233;xico D.F.">
</ISWebCombo:WebComboCell>
</Cells>
</ISWebCombo:WebComboRow>
<ISWebCombo:WebComboRow Position="3">
<Cells>
<ISWebCombo:WebComboCell Text="Mannheim">
</ISWebCombo:WebComboCell>
</Cells>
</ISWebCombo:WebComboRow>
<ISWebCombo:WebComboRow Position="4">
<Cells>
<ISWebCombo:WebComboCell Text="S&#227;o Paulo">
</ISWebCombo:WebComboCell>
</Cells>
</ISWebCombo:WebComboRow>
<ISWebCombo:WebComboRow Position="5">
<Cells>
<ISWebCombo:WebComboCell Text="Br&#228;cke">
</ISWebCombo:WebComboCell>
</Cells>
</ISWebCombo:WebComboRow>
<ISWebCombo:WebComboRow Position="6">
<Cells>
<ISWebCombo:WebComboCell Text="M&#252;nchen">
</ISWebCombo:WebComboCell>
</Cells>
</ISWebCombo:WebComboRow>
<ISWebCombo:WebComboRow Position="7">
<Cells>
<ISWebCombo:WebComboCell Text="Barcelona">
</ISWebCombo:WebComboCell>
</Cells>
</ISWebCombo:WebComboRow>
<ISWebCombo:WebComboRow Position="8">
<Cells>
<ISWebCombo:WebComboCell Text="Lisboa">
</ISWebCombo:WebComboCell>
</Cells>
</ISWebCombo:WebComboRow>
</Rows>
</ISWebCombo:WebCombo>



regards

Sachin

All Replies

Hi Sachin,

It's caused by the ellipsis text from our internal styling. Oddly enough, this issue only occurs on IE 11. Currently the fastest way to fix it is to remove the right margin from the input's user agent style. Try adding this style to fix the problem.

<style>
.WC4-C > input {
    margin-right: 0;
}
</style>

Hope this helps.

Best Regards,
Erwin Sanders

Hi Erwin,
               Provided solution worked.
thanks and regards
Sachin

You're welcome Sachin. Glad the solution worked. If you have got any more questions feel free to ask us again.

Regards,
Erwin Sanders

All times are GMT -5. The time now is 10:17 AM.
Previous Next