We have a listbox with SelectionMode="Multiple" turned on, however when you select multiple items it also selects other parts of the screen and manages to select other parts of the screen, it selects from the listbox too but everything selected goes blue as expected but lots of screen does too,
I hope you can help.
I hope you can help.
<
telerik:RadListBox
ID
=
"radOrderID"
runat
=
"server"
Width
=
"900px"
Height
=
"200px"
EmptyMessage
=
"Select an Order"
Skin
=
"Outlook"
SelectionMode
=
"Multiple"
AutoPostBack
=
"true"
>
<
ItemTemplate
>
<
table
cellspacing
=
"0"
cellpadding
=
"0"
class
=
"multicomboBoxOrder"
>
<
tr
>
<
td
class
=
"col1"
>
<%#DataBinder.Eval(Container.DataItem, "OrderNo")%>
</
td
>
<
td
class
=
"col2"
>
<%#DataBinder.Eval(Container.DataItem, "Description")%>
</
td
>
<
td
class
=
"col3"
>
<%#DataBinder.Eval(Container.DataItem, "CustomerHeaderRef")%>
</
td
>
<
td
class
=
"col4"
>
<%#DataBinder.Eval(Container.DataItem, "Department")%>
</
td
>
<
td
class
=
"col5"
>
<%#Format(DataBinder.Eval(Container.DataItem, "OutstandingValueToInvoice"), "0.00")%>
</
td
>
<
td
class
=
"col6"
>
<%#Format(DataBinder.Eval(Container.DataItem, "OutstandingValueToInvoiceShipped"), "0.00")%>
</
td
>
<
td
class
=
"col7"
>
<%#DataBinder.Eval(Container.DataItem, "CurrencySell")%>
</
td
>
<
td
class
=
"col8"
>
<%#DataBinder.Eval(Container.DataItem, "OrderSource")%>
</
td
>
</
tr
>
</
table
>
</
ItemTemplate
>
</
telerik:RadListBox
>