Solution to : Flicker problem with Asp.net Listbox

By pw zeus
Access over 40 UI widgets with everything from interactive menus to rich charts.

Flickering problem with ASP.NET List Box.

Recently working on a list box I saw unusual problem. On this page I was calling couple of function in java script using mouse rollover event. Every time these events were triggered, the list box used to flicker.

Even after setting exact height for table/td and list box, flickering continued. The only way to deal with this, at least in my case was to set “Row” property of list box.

 

 

Example:

 

<asp:ListBox ID="lstExample" runat="server" Rows="6" Width="200" SelectionMode="Multiple"></asp:ListBox>

 

Hope this helps.

 

Rugved

Popularity  (1344 Views)