Gridview problem. Please help



Hi:

I am using a grid and having a problem with sorting. Below are my
code and change the header name at run time as below based on
language.If i don't change the header name it work. Can someone please
help me so that i can enable the sorting and change the header as
well. Thanks, in advance.


<asp:GridView ID="GridView1" CellPadding="5"
EmptyDataText="No Data Found" GridLines="Vertical"
ShowFooter="True" CssClass="gridview"
AlternatingRowStyle-CssClass="even" Width="620px"
runat="server" AutoGenerateColumns="False"
DataSourceID="ObjectDataSource2" AllowSorting="true"
OnDataBound="GridView1_DataBound"
OnRowDataBound="GridView1_RowDataBound"
OnRowCreated="GridView1_RowCreated"
EnableViewState="true">
<Columns>
<asp:BoundField HtmlEncode="False" HeaderStyle-
VerticalAlign="Top" DataFormatString="{0:C4}"
DataField="GRANT_PRICE"
SortExpression="GRANT_PRICE" ItemStyle-HorizontalAlign="right" />
<asp:BoundField DataField="GRANT_DATE"
HeaderStyle-HorizontalAlign="Right" HeaderStyle-VerticalAlign="Top"
ItemStyle-Wrap="false"
SortExpression="GRANT_DATE" ItemStyle-HorizontalAlign="right" />
<asp:BoundField DataField="PLAN_ID"
HeaderStyle-VerticalAlign="Top" SortExpression="PLAN_ID" />
<asp:BoundField DataField="AGGREMENT"
HeaderStyle-VerticalAlign="Top" SortExpression="AGGREMENT" />
<asp:BoundField DataField="BALANCE_OPTIONS"
HeaderStyle-VerticalAlign="Top" SortExpression="BALANCE_OPTIONS"
ItemStyle-HorizontalAlign="right" />
</Columns>
<AlternatingRowStyle />
</asp:GridView>

<asp:ObjectDataSource ID="ObjectDataSource2"
runat="server" SelectMethod="GetDetail"
TypeName="cBMOSOP">
<SelectParameters>
<asp:ControlParameter ControlID="clientIDH"
Name="clientID" PropertyName="Value"
Type="String" />
<asp:ControlParameter ControlID="baseIDH"
Name="baseID" PropertyName="Value" Type="String" />
</SelectParameters>
</asp:ObjectDataSource>


protected void GridView1_RowCreated( object sender,
GridViewRowEventArgs e )
{
if ( e.Row.RowType == DataControlRowType.Header )
{
e.Row.Cells[0].Text = lblGrantPrice.Value;
e.Row.Cells[0].ColumnSpan = 2;
e.Row.Cells[0].HorizontalAlign = HorizontalAlign.Right;
e.Row.Cells[1].Text = lblGrantDate.Value;
e.Row.Cells[1].HorizontalAlign = HorizontalAlign.Left;
e.Row.Cells[2].Text = lblPlanID.Value;
e.Row.Cells[2].HorizontalAlign = HorizontalAlign.Left;
e.Row.Cells[3].Text = lblAggrementReceived.Value;
e.Row.Cells[3].HorizontalAlign = HorizontalAlign.Left;
e.Row.Cells[4].Text = lblAvailableShares.Value;
e.Row.Cells[4].HorizontalAlign = HorizontalAlign.Right;
e.Row.Cells[5].Text = lblOptionToExercise.Value;
e.Row.Cells[5].HorizontalAlign = HorizontalAlign.Right;
}
}

.



Relevant Pages

  • RE: Weird Problem with a Subreport
    ... Ok for the sorting i will try to explain it to you. ... query by writing the SQL I didnt include the Place holder field, ... Do you have a text box in the Goup Header? ... I have a header of shutdown in front of the whole list but the two lists ...
    (microsoft.public.access.reports)
  • RE: Weird Problem with a Subreport
    ... UNION ALL SELECT 1 As ListID, UNIT, Remarks, Place_Holder FROM ... I tried to add Place Holder to the Union query along with UNIT, ... Ok for the sorting i will try to explain it to you. ... Do you have a text box in the Goup Header? ...
    (microsoft.public.access.reports)
  • RE: Weird Problem with a Subreport
    ... SELECT 0 AS ListID, UNIT, Remarks, Place_Holder FROM AugustND; ... I tried to add Place Holder to the Union query along with UNIT, ... Ok for the sorting i will try to explain it to you. ... Do you have a text box in the Goup Header? ...
    (microsoft.public.access.reports)
  • RE: Weird Problem with a Subreport
    ... and used sorting and grouping to sort by the placeholder and all is well!!!! ... query by writing the SQL I didnt include the Place holder field, ... Do you have a text box in the Goup Header? ... I have a header of shutdown in front of the whole list but the two lists ...
    (microsoft.public.access.reports)
  • RE: Weird Problem with a Subreport
    ... and used sorting and grouping to sort by the placeholder and all is well!!!! ... query by writing the SQL I didnt include the Place holder field, ... Do you have a text box in the Goup Header? ... I have a header of shutdown in front of the whole list but the two lists ...
    (microsoft.public.access.reports)

Loading