Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Jason Peterson #1
RE: Changing the ellipsis in a datagrid's page footer
My current solution is a bit of a hack. In the ItemCreated event, I do the following (sample VB.NET code with minimal error checking)
If (e.Item.ItemType = ListItemType.Pager) The
Dim x, y As Intege
x = e.Item.Controls.Count -
If (x > -1) The
y = e.Item.Controls(x).Controls.Count -
If (y > -1) The
Dim dglb As System.Web.UI.WebControls.LinkButton = CType(e.Item.Controls(x).Controls(y), LinkButton
dglb.Text = "more
End I
End I
End I
This appears to work but seems kind of lame. I found it interesting that the DataGrid's link buttons are actually "DataGridLinkButton" objects, but it is a private class
Jaso
Jason Peterson Guest
-
DataGrid's PageIndexChanged Not Firing for 1st (First) Page Only!!!???
I have a dynamically created DataGrid which is on a page below other controls. The problem I am having is that when I enable paging for the... -
Page #s in Footer - change the start number? How?
I'd like the page numbers that appear in the footer to start at a number other than 1. I can see easily how to do this for the PDF pages (on the... -
LinkButton in Page Footer problem
I am modifying the paging ListItem footer in a datagrid in the ItemCreated event. I'm adding another cell in which I place a 'Show All' LinkButton.... -
Need footer at page bottom, not just below content.
Hi to all. What would be the procedure for having a footer that shows up at the bottom of the users browser as opposed to just being right below... -
Page Footer
Darrell tat wo schreiben: With something like PHP or SSI (Server Side Includes). Try to rename the main file to *.shtml so that the server...



Reply With Quote

