OnItemDataBound Problem

M

mayetski

Hi,

I created a DataGrid programmatically, my problem is that I dont know
how to associate a function with the OnItemDataBound event of the
Datagrid if it's created programmatically.

Would anyone help me do this?

Any help will be much appreciated.

Thanks!

Mayet


Here is a sample code...

Dim oGrd As DataGrid
oGrd = New DataGrid()

Dim oDS As DataSet = New DataSet()
oDS = oPL.GetReport()

grdPayroll.DataSource = oDS
grdPayroll.DataBind()

Private Sub grdItemDataBound() ....
End Sub
 
J

Jeppe Dige Jespersen

I created a DataGrid programmatically, my problem is that I dont know
how to associate a function with the OnItemDataBound event of the
Datagrid if it's created programmatically.

Hello Mayet,

This should do it:

----
Protected WithEvents dg As DataGrid

Private Sub myDataboundHandler(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.DataGridItemEventArgs) Handles dg.ItemDataBound
'code goes here.
End Sub


Jeppe Jespersen
 
R

Riki

Hi,

I created a DataGrid programmatically, my problem is that I dont know
how to associate a function with the OnItemDataBound event of the
Datagrid if it's created programmatically.

Would anyone help me do this?

Any help will be much appreciated.

Thanks!

Mayet


Here is a sample code...

Dim oGrd As DataGrid
oGrd = New DataGrid()

Dim oDS As DataSet = New DataSet()
oDS = oPL.GetReport()

grdPayroll.DataSource = oDS
grdPayroll.DataBind()

Private Sub grdItemDataBound() ....
End Sub

AddHandler oGrd.ItemDataBound, AddressOf grdItemDataBound
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,262
Messages
2,571,043
Members
48,769
Latest member
Clifft

Latest Threads

Top