Hi,
I'm using listView in ASP.NET, and I want to change the width of the columns in edit mode.
The problem I have is that when you press 'edit' button- the listView becomes larger than the page width, so there is a right/left scroll, but the page header and menu bar (color) stop at the regular page width (100%).
I thought maybe changing the columns width at edit mode will help to fix it (for ex: Quantity column doesnt have to be so large, its just a number).
Here is my code:
<asp:ListView ID="ListView1" runat="server" ItemType="BE.Item" SelectMethod="getItems" UpdateMethod="updateItem" InsertMethod="addItem" DataKeyNames="ItemCode">
<LayoutTemplate>
<table runat="server" style="width: 95%;" >
<tr runat="server">
<td runat="server&q ...
Go to the complete details ...