473,806 Members | 2,661 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

DataGrid Footer

Is it possible to access the footer item in the render method of a datagrid?
So far, I can only find the FooterText of each column using the columns
collection, but that doesn't allow me to find out how many cells are
contained in the Footer item.

Thanks in advance for any hints!
Nov 18 '05 #1
4 3036
Playing out with the datagrid I found out that I can access the table inside
it using myDataGrid.Cont rols[0] and from there access any rows in the
datagrid, even the header, footer and pager. This can be useful for other
people who had the same question :)
"Alexandre Soares" <so*********@ho tmail.com> a écrit dans le message de
news:e2******** ******@TK2MSFTN GP12.phx.gbl...
Is it possible to access the footer item in the render method of a datagrid? So far, I can only find the FooterText of each column using the columns
collection, but that doesn't allow me to find out how many cells are
contained in the Footer item.

Thanks in advance for any hints!

Nov 18 '05 #2
"Alexandre Soares" <so*********@ho tmail.com> wrote in message
news:uc******** ******@tk2msftn gp13.phx.gbl...
Playing out with the datagrid I found out that I can access the table inside it using myDataGrid.Cont rols[0] and from there access any rows in the
datagrid, even the header, footer and pager. This can be useful for other
people who had the same question :)
You could also use DataGrid.Items to reference all of the items (rows) in
the DataGrid.
--
John Saunders
johnwsaundersii i at hotmail

"Alexandre Soares" <so*********@ho tmail.com> a écrit dans le message de
news:e2******** ******@TK2MSFTN GP12.phx.gbl...
Is it possible to access the footer item in the render method of a

datagrid?
So far, I can only find the FooterText of each column using the columns
collection, but that doesn't allow me to find out how many cells are
contained in the Footer item.

Thanks in advance for any hints!


Nov 18 '05 #3
Hi John:

Items does not hold header and footer items, only the data bound
items....

--
Scott
http://www.OdeToCode.com

On Fri, 30 Jul 2004 17:48:07 -0400, "John Saunders"
<jo************ **@notcoldmail. com> wrote:
"Alexandre Soares" <so*********@ho tmail.com> wrote in message
news:uc******* *******@tk2msft ngp13.phx.gbl.. .
Playing out with the datagrid I found out that I can access the table

inside
it using myDataGrid.Cont rols[0] and from there access any rows in the
datagrid, even the header, footer and pager. This can be useful for other
people who had the same question :)


You could also use DataGrid.Items to reference all of the items (rows) in
the DataGrid.


Nov 18 '05 #4
"Scott Allen" <bitmask@[nospam].fred.net> wrote in message
news:6l******** *************** *********@4ax.c om...
Hi John:

Items does not hold header and footer items, only the data bound
items....
Whoops. Sorry, Scott, I was thinking about the fact that the ItemCreated and
ItemDataBound events both get called with header and footer items.
--
John Saunders
johnwsaundersii i at hotmail

On Fri, 30 Jul 2004 17:48:07 -0400, "John Saunders"
<jo************ **@notcoldmail. com> wrote:
"Alexandre Soares" <so*********@ho tmail.com> wrote in message
news:uc******* *******@tk2msft ngp13.phx.gbl.. .
Playing out with the datagrid I found out that I can access the table

inside
it using myDataGrid.Cont rols[0] and from there access any rows in the
datagrid, even the header, footer and pager. This can be useful for other people who had the same question :)


You could also use DataGrid.Items to reference all of the items (rows) in
the DataGrid.

Nov 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1236
by: Robert Ashby | last post by:
I have a .jpg footer on my .aspx web page. When the datagrid loads it floats over the top of the web page footer. The footer does not move. I would like to footer to float on the web page and adjust according to the datagrid. If the datagrid is showing only 3 items or 20 items I would like the .jpg footer always to be at the bottom of the datagrid. How can I do this?? Thanks for the help
3
4889
by: Jim Heavey | last post by:
Trying to figure out the technique which should be used to add rows to a datagrid. I am thinking that I would want an "Add" button on the footer, but I am not quite sure how to do that. Is that the best method? Do you have a sample of how to do this?
4
1679
by: Jim Heavey | last post by:
Suppose I am using a series of controls in the footer of a datagrid which allows a user to enter "a new row of information to be added to the datagrid datasource". Some of these controls have a "RequiredValidator" control. I am able to enter data and all is well. On this same datagrid I have a "EditCommand" column which get the user int the Edit/Update/Cancel mode, allowing the user to edit individual lines. When I enter the "Edit"...
3
432
by: Shiju Poyilil | last post by:
How to find a control in the datagrid footer ? In my code below, I am trying to hide a label named lbl1 on the basis of a selected vlaue(value="test") of the dropdownlist ,both the dropdownlist and the label are in the footer of the datagrid. An advice on where I am going wrong,would be highly appreciated For Each datagriditem In dg1.Items Dim str as string="test" 'this gives the value of selected item from the dropdown list in the...
3
2157
by: Mau | last post by:
I have a question: I have a datagrid with paging (4 elements for page), header and footer I set a fixed height: 600px So the situation is (in a page with 5 elements) 6 rows (header + 4 elements + footer) every with fixed height 100px, and this is ok but in a page with 1 element (for example) I have 3 rows (header + 1 element + footer) every row is 200px height
9
5068
by: tshad | last post by:
How do I find (and set) a couple of labels in the Footer after a DataGrid is filled? I have a bunch of DataGrids that get displayed nested inside a DataList. The datagrid looks like: ******************************************************************************* <asp:DataGrid visible="False" border=1
1
1674
by: Stu | last post by:
Hi, I have a button in the footer of a datagrid that sometimes does not tigger the item command. The page is quite large & has a number of homegrown controls in it. Has anyone come across this type of behaviour before? Can anyone suggest a solution? Thanks in advance, Stu
3
6071
by: williamfrenette | last post by:
To add record into my grid I use the footer way like explain here : http://aspnet.4guysfromrolla.com/articles/021203-1.aspx But i dont want a Add button on each row so i call the showfooter with another button. DBEditDataGrid.ShowFooter := true; DBEditDataGrid.SelectedIndex := DBEditDataGrid.Items.Count; LoadDataFromDB; DataBindGrid;
1
1999
by: .Net Sports | last post by:
the below itemdatabound function works , displays all the grand totals in the footer control of the datagrid: private void dglvboard_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e) { DataRowView rowData; decimal price; decimal priceWk; decimal newssum;
0
9719
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9597
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10620
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10110
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6877
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5546
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5682
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4329
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3851
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.