Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
590
Web tab inside ultrawebgrid datarow streching issue
posted

Hi,

We are implemented webtab control. Inside web tab control we are implemented ultrawebgrid while click the double in ultraweb grid cell in edit.It's streching unnecessary stretching entire ultraweb grid In IE 8. It's working same code in IE 7 and below version.

Example Code:  

<

ig:ContentTabItem runat="server" Key="F" Text

="Assign Functionality">

<Template

>

<table width

="98%">

<tr

>

<td align="right" class="tableElement" style="width: 30%; height: 35px;" valign

="middle">

<asp:Label ID="lblFuncModule" runat="server" CssClass="tableElement" Text=" Select Module:"></asp:Label

>

</td

>

<td align="left" class="tableElement" valign

="middle">

<asp:DropDownList ID="ddlFuncModule" runat="server" AutoPostBack="True" CssClass

="tableElement"

OnSelectedIndexChanged

="ddlFuncModule_SelectedIndexChanged">

</asp:DropDownList

>

</td

>

</tr

>

<tr

>

<td colspan

="2">

</td

>

</tr

>

<tr

>

<td align="center" class="tableElement" style="height: 400px" colspan="2" valign

="top">

<asp:Panel ID="pnlTransfers" runat="server" Width

="100%">

<igtbl:UltraWebGrid ID="grdSiteFunc" DisplayLayout-AutoGenerateColumns="false" runat

="server"

Width="95%" Height="350px" EnableViewState

="true">

<Bands

>

<igtbl:UltraGridBand

>

<AddNewRow View="NotSet" Visible

="NotSet">

</AddNewRow

>

<Columns

>

<igtbl:UltraGridColumn AllowUpdate="No" Hidden="true" Key

="ModFunctionID">

</igtbl:UltraGridColumn

>

<igtbl:UltraGridColumn AllowUpdate="No" Key="ModFunctionName" Width

="200px">

<HeaderStyle HorizontalAlign="Left"

/>

<CellStyle HorizontalAlign

="Left">

</CellStyle

>

<Header Caption

="Function">

<RowLayoutColumnInfo OriginX="1"

/>

</Header

>

<Footer

>

<RowLayoutColumnInfo OriginX="1"

/>

</Footer

>

</igtbl:UltraGridColumn

>

<igtbl:UltraGridColumn AllowUpdate="Yes" DataType="System.String" Key

="ModFunctionAlias"

Width

="250px">

<CellStyle HorizontalAlign="left" Wrap

="True">

</CellStyle

>

<Header Caption

="Alias">

<RowLayoutColumnInfo OriginX="2"

/>

</Header

>

</igtbl:UltraGridColumn

>

<igtbl:UltraGridColumn AllowUpdate="Yes" DataType="System.String" Key

="ModFunctionHeader"

Width

="100px">

<CellStyle HorizontalAlign="left" Wrap

="True">

</CellStyle

>

<Header Caption

="Page Header">

<RowLayoutColumnInfo OriginX="2"

/>

</Header

>

</igtbl:UltraGridColumn

>

<igtbl:UltraGridColumn AllowUpdate="Yes" DataType="System.Boolean" Key="Site" Type

="CheckBox"

Width

="80px">

<CellStyle HorizontalAlign

="Center">

</CellStyle

>

<Header Caption

="">

</Header

>

</igtbl:UltraGridColumn

>

</Columns

>

</igtbl:UltraGridBand

>

</Bands

>

<DisplayLayout BorderCollapseDefault="Separate" Name="grdSiteFunc" ScrollBarView

="Vertical"

ScrollBar="Always" RowHeightDefault="15px" SelectTypeRowDefault="Single" TableLayout

="Fixed"

RowSelectorsDefault="No" SelectTypeCellDefault

="Single"

Version="3.00" AutoGenerateColumns="False" StationaryMargins="Header" AllowSortingDefault

="OnClient"

HeaderClickActionDefault="NotSet" AllowUpdateDefault="Yes"

>

<RowStyleDefault BackColor="Transparent" BorderColor="LightGray" CssClass

="gridViewTblColumns"

BorderStyle="Solid" BorderWidth

="1px">

<BorderDetails ColorLeft="Window" ColorTop="Window"

/>

<Padding Left="1px"

/>

</RowStyleDefault

>

<HeaderStyleDefault CssClass="gridViewTblHeader" BackColor="#009DD9" BorderStyle

="Solid"

Height="20px" HorizontalAlign="Left" ForeColor="Navy" Font-Bold

="True">

<BorderDetails ColorLeft="White" ColorTop="White" WidthLeft="1px" WidthTop="1px"

/>

</HeaderStyleDefault

>

<SelectedRowStyleDefault BackColor

="LightSteelBlue">

</SelectedRowStyleDefault

>

<EditCellStyleDefault CssClass="tableElement" HorizontalAlign="Left" borderwidth

="1px">

</EditCellStyleDefault

>

<FrameStyle Width="95%" Height

="350px">

</FrameStyle

>

<ActivationObject BorderColor="" BorderWidth

="">

</ActivationObject

>

<RowAlternateStyleDefault BackColor

="#FFF6CC">

</RowAlternateStyleDefault

>

</DisplayLayout

>

</igtbl:UltraWebGrid

>

</asp:Panel

>

</td

>

</tr

>

</table

>

</Template

>

</ig:ContentTabItem

>

please help me to reslove this problem

Thanks for advance