vote up 0 vote down star

I am creating a gridview that allows adding of new rows by adding the controls neccessary for the insert into the footertemplate but when the objectdatasource has no records I add a dummy row as the footertemplate is only displayed when there is data. How can I hide this dummy row? I have tried setting e.row.visible = false on RowDataBound but the row is still visible :-(

flag

55% accept rate

9 Answers

vote up 1 vote down

I think this is what you need:

<asp:GridView ID="grid" runat="server" AutoGenerateColumns="false" ShowFooter="true" OnRowDataBound="OnRowDataBound">
    <Columns>
        <asp:TemplateField HeaderText="headertext">
            <ItemTemplate>
                itemtext
            </ItemTemplate>
            <FooterTemplate>
                insert controls
            </FooterTemplate>
        </asp:TemplateField>
    </Columns>
</asp:GridView>

and the codebehind:

protected void OnRowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        e.Row.Attributes["style"] = "display:none";
    }
}

But I do not understand why you are adding your "insert controls" to the footer instead of placing them below the grid.

link|flag
vote up 0 vote down

Maybe try:

e.Row.Height = Unit.Pixel(0);

This isnt the right answer but it might work in the meantime until you get the right answer.

link|flag
Doesn't work, still displays the empty row :-( – Nicholas Sep 22 '08 at 12:55
vote up 0 vote down

Maybe use CSS to set display none?!

link|flag
vote up 0 vote down

You could handle the gridview's databound event and hide the dummy row. (Don't forget to assign the event property in the aspx code):

protected void GridView1_DataBound(object sender, EventArgs e)
    {
        if (GridView1.Rows.Count == 1)
            GridView1.Rows[0].Visible = false;
    }
link|flag
vote up 0 vote down

This is the incorrect usage of the GridView control. The GridView control has a special InsertRow which is where your controls should go.

link|flag
I always want the footer shown as that is where my insert controls are contained, I want to hide the DummyRow I add. – Nicholas Sep 22 '08 at 12:41
vote up 0 vote down

GridView has a special property to access Footer Row, named "FooterRow"

Then, you cold try yourGrid.FooterRow.Visible = false;

link|flag
vote up 0 vote down

I did this on a previous job, but since you can add rows, I always had it visible in the footer row. To make it so that the grid shows up, I bound an empty row of the type that is normally bound

dim row as Datarow = table.NewRow()
table.AddRow(row)
gridView.DataSource = table
gridView.Databind()

then it has all the columns and then you need. You can access the footer by pulling this:

'this will get the footer no matter how many rows there are in the grid.

Dim footer as Control = gridView.Controls(0).Controls(gridView.Controls(0).Controls.Count -1)

then to access any of the controls in the footer you would go and do a:

Dim cntl as Control = footer.FindControl(<Insert Control Name Here>)

I'd assume you'd be able to do a:

footer.Visible = false

to make the footer row invisible.

I hope this helps!

Edit I just figured out what you said. I basically delete the row when I add a new one, but to do this you need to check to see if there are any other rows, and if there are, check to see if there are values in it.

To delete the dummy row do something like this:

If mTable.Rows.Count = 1 AndAlso mTable.Rows(0)(<first column to check for null value>) Is DBNull.Value AndAlso mTable.Rows(0)(<second column>) Is DBNull.Value AndAlso mTable.Rows(0)(<thrid column>) Is DBNull.Value Then  
mTable.Rows.Remove(mTable.Rows(0))  
End If
mTable.Rows.Add(row)
gridView.Datasource = mTable
gridView.Databind()
link|flag
vote up 0 vote down

Just use: To make it visible

Gridview.Rows.Item(i).Attributes.Add("style", "display:block")

And to make it invisible

Gridview.Rows.Item(i).Attributes.Add("style", "display:none")

Greetings from Chile

Marcelo chelox1976@gmail.com

link|flag
vote up 0 vote down

Why are you not using the EmptyDataTemplate? It seems to work great even though I have only been using it for a couple days...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.