Hi guys!
I have a listview web control and its datasource is binded at the page load event handler.
The following code below shows a listview which its button is dynamically generated based on how many datarows in the datasource.
The problem is, sometimes, when the button is click, both client side alert and server side click event will not be fire. The chances of happening is 10-15%.
If it's not firing, I have to shift my mouse to the side to click and it will work normally. This only happens with Google Chrome. I have disabled all extensions in chrome but to no avail.
Please help!
<asp:ListView ID="productsList" ItemPlaceholderID="itemContainer" EnableViewState="false" OnItemDataBound="productsList_ItemDataBound" runat="server" DataKeyNames="ID">
<LayoutTemplate>
<ul class="nav-fade">
<asp:Pla ...
Go to the complete details ...