By expanding one by one of my main grid subgrillas I have no problems, but when I open and close and all I have left some of the grid lines that are not well, stay on top of the data
Expand all
Expand and Collapse
Expand and Collapse 2
Expand all
Expand and Collapse
Expand and Collapse 2
<
asp:Panel
id
=
"pnlVoyage"
runat
=
"server"
width
=
"1400"
>
<
radG:RadGrid
ID
=
"RadGrid1"
runat
=
"server"
PageSize
=
"6"
Width
=
"1400px"
AllowMultiRowSelection
=
"True"
AllowPaging
=
"True"
AllowSorting
=
"False"
AutoGenerateColumns
=
"False"
Skin
=
"BDS"
Visible
=
"false"
>
<
ClientSettings
AllowDragToGroup
=
"false"
AllowGroupExpandCollapse
=
"true"
AllowExpandCollapse
=
"true"
>
<
Selecting
AllowRowSelect
=
"false"
></
Selecting
>
</
ClientSettings
>
<
MasterTableView
Width
=
"100%"
runat
=
"server"
AllowPaging
=
"false"
DataKeyNames
=
"call_id"
HierarchyLoadMode
=
"Client"
>
<
DetailTables
>
<
radG:GridTableView
runat
=
"server"
DataKeyNames
=
"call_id"
Name
=
"Table"
Width
=
"100%"
HierarchyLoadMode
=
"Client"
AllowAutomaticUpdates
=
"true"
AllowPaging
=
"false"
Font-Size
=
"11px"
>
<
Columns
>
<
radG:GridBoundColumn
ItemStyle-Width
=
"123"
HeaderStyle-Width
=
"123"
HeaderStyle-Height
=
"21"
ReadOnly
=
"true"
HeaderText
=
""
HeaderButtonType
=
"TextButton"
DataField
=
"tipo"
></
radG:GridBoundColumn
>
<
radG:GridBoundColumn
ItemStyle-Width
=
"190"
HeaderStyle-Width
=
"190"
ReadOnly
=
"true"
HeaderText
=
"Date"
HeaderButtonType
=
"TextButton"
DataField
=
"date"
></
radG:GridBoundColumn
>
<
radG:GridBoundColumn
ItemStyle-Width
=
"100"
HeaderStyle-Width
=
"100"
ReadOnly
=
"true"
HeaderText
=
"TEU Avail"
HeaderButtonType
=
"TextButton"
DataField
=
"TEUSTOTAL"
></
radG:GridBoundColumn
>
<
radG:GridBoundColumn
ItemStyle-Width
=
"100"
HeaderStyle-Width
=
"100"
ReadOnly
=
"true"
HeaderText
=
"Weight Avail"
HeaderButtonType
=
"TextButton"
DataField
=
"WEIGHTTOTAL"
></
radG:GridBoundColumn
>
<
radG:GridBoundColumn
ItemStyle-Width
=
"100"
HeaderStyle-Width
=
"100"
ReadOnly
=
"true"
HeaderText
=
"Plugs Avail"
HeaderButtonType
=
"TextButton"
DataField
=
"PLUGSTOTAL"
></
radG:GridBoundColumn
>
</
Columns
>
</
radG:GridTableView
>
</
DetailTables
>
<
Columns
>
<
radG:GridBoundColumn
ItemStyle-Width
=
"123"
HeaderStyle-Width
=
"123"
ReadOnly
=
"true"
HeaderText
=
"Port"
HeaderButtonType
=
"TextButton"
DataField
=
"port_id"
></
radG:GridBoundColumn
>
<
radG:GridBoundColumn
ItemStyle-Width
=
"190"
HeaderStyle-Width
=
"190"
ReadOnly
=
"true"
HeaderText
=
"Date"
HeaderButtonType
=
"TextButton"
DataField
=
"etd"
></
radG:GridBoundColumn
>
<
radG:GridTemplateColumn
ItemStyle-Width
=
"100"
HeaderStyle-Width
=
"100"
HeaderText
=
"TEU Avail"
HeaderButtonType
=
"TextButton"
DataField
=
"TEUSTOTAL"
>
<
ItemTemplate
>
<%# IIf(DataBinder.Eval(Container.DataItem, "TEUSTOTAL") <
0
, "<font
color
=
'red'
>", "") %>
<%# IIf(DataBinder.Eval(Container.DataItem, "TEUSTOTAL") = 0, "-", DataBinder.Eval(Container.DataItem, "TEUSTOTAL")) %>
<%# IIf(DataBinder.Eval(Container.DataItem, "TEUSTOTAL") <
0
, "</font>", "") %>
</
ItemTemplate
>
</
radG:GridTemplateColumn
>
<
radG:GridTemplateColumn
ItemStyle-Width
=
"100"
HeaderStyle-Width
=
"100"
HeaderText
=
"Weight Avail"
HeaderButtonType
=
"TextButton"
DataField
=
"WEIGHTTOTAL"
>
<
ItemTemplate
>
<%# IIf(DataBinder.Eval(Container.DataItem, "WEIGHTTOTAL") <
0
, "<font
color
=
'red'
>", "") %>
<%# IIf(DataBinder.Eval(Container.DataItem, "WEIGHTTOTAL") = 0, "-", DataBinder.Eval(Container.DataItem, "WEIGHTTOTAL")) %>
<%# IIf(DataBinder.Eval(Container.DataItem, "WEIGHTTOTAL") <
0
, "</font>", "") %>
</
ItemTemplate
>
</
radG:GridTemplateColumn
>
<
radG:GridTemplateColumn
ItemStyle-Width
=
"100"
HeaderStyle-Width
=
"100"
HeaderText
=
"Plugs Avail"
HeaderButtonType
=
"TextButton"
DataField
=
"PLUGSTOTAL"
>
<
ItemTemplate
>
<%# IIf(DataBinder.Eval(Container.DataItem, "PLUGSTOTAL") <
0
, "<font
color
=
'red'
>", "") %>
<%# IIf(DataBinder.Eval(Container.DataItem, "PLUGSTOTAL") = 0, "-", DataBinder.Eval(Container.DataItem, "PLUGSTOTAL")) %>
<%# IIf(DataBinder.Eval(Container.DataItem, "PLUGSTOTAL") <
0
, "</font>", "") %>
</
ItemTemplate
>
</
radG:GridTemplateColumn
>
</
Columns
>
</
MasterTableView
>
</
radG:RadGrid
>
</
asp:Panel
>