Hi,
This is my first post.
I have a grid inside a customitem's slide menu. As I change the slide menu width (it's inside a splitter, width set to 100%, that's working OK), the slide menu's width should adjust automatically
(width=100%), but it doesn't happen. Instead, it's seems the grid takes the value in pixels, not in %!
My item's definitios:
<eo:MenuItem RightIcon-Url="YellowStar" CustomItemID="MyItem">
</eo:MenuItem>
.
.
.
<eo:CustomItem runat="server" ID="MyItem" style="width:100%;margin:0;" >
<div style="width:100%;margin:0;">
<eo:grid ID="MyGrid" runat="server" BorderColor="#C7D1DF" BorderWidth="3px" Width="100%"...
And the result:
If I change the grid definition:
<eo:grid ID="MyGrid" runat="server" BorderColor="#C7D1DF" BorderWidth="3px"
Width="200%"...
...I get this:
And with this:
<eo:grid ID="MyGrid" runat="server" BorderColor="#C7D1DF" BorderWidth="3px"
Width="50%"...
... I get this:
It's seems it's taking the width in pixels. You'll see the star as the right icon of the menuitem; the slide menu width is OK. It's a known bug or I'm doing something wrong?
Thank you!