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 :-(
|
|
This is the incorrect usage of the GridView control. The GridView control has a special InsertRow which is where your controls should go. |
|||
|
|
|
Maybe try:
This isnt the right answer but it might work in the meantime until you get the right answer. |
||
|
|
|
Maybe use CSS to set display none?! |
||
|
|
|
|
I think this is what you need:
and the codebehind:
But I do not understand why you are adding your "insert controls" to the footer instead of placing them below the grid. |
||
|
|
|
|
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):
|
||
|
|
|
|
GridView has a special property to access Footer Row, named "FooterRow" Then, you cold try yourGrid.FooterRow.Visible = false; |
||
|
|
|
|
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
then it has all the columns and then you need. You can access the footer by pulling this:
then to access any of the controls in the footer you would go and do a:
I'd assume you'd be able to do a:
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:
|
|||
|
|
|
|
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 |
||
|
|
|
|
Why are you not using the EmptyDataTemplate? It seems to work great even though I have only been using it for a couple days... |
||
|
|
