E
Eric
Ok,
o I have a datagrid with sorting and paging. I would like to add a
small ImageButton right under the header text that I currently use for
sorting. I'm using somehting like this now but it replaces the actual
header text that I need to stay for my sorting capabilities. The image
button needs to fire a seperate event handler that is unrelated to the
sort funtionality.
Dim myLink As New ImageButton
myLink.Text = "Two"
myLink.Attributes.Add("runat", "server")
myLink.Attributes.Add("id", "btnAddNew")
'myLink.Attributes.Add("CommandName", "btnAddNew")
'myLink.Attributes.Add("CommandArgument", "btnAddNew")
e.Item.Cells(2).Controls.Add(myLink)
So, anybody know how I can add a imagebutton to run parallel with my
sorting header text?
Thanks
Eric
o I have a datagrid with sorting and paging. I would like to add a
small ImageButton right under the header text that I currently use for
sorting. I'm using somehting like this now but it replaces the actual
header text that I need to stay for my sorting capabilities. The image
button needs to fire a seperate event handler that is unrelated to the
sort funtionality.
Dim myLink As New ImageButton
myLink.Text = "Two"
myLink.Attributes.Add("runat", "server")
myLink.Attributes.Add("id", "btnAddNew")
'myLink.Attributes.Add("CommandName", "btnAddNew")
'myLink.Attributes.Add("CommandArgument", "btnAddNew")
e.Item.Cells(2).Controls.Add(myLink)
So, anybody know how I can add a imagebutton to run parallel with my
sorting header text?
Thanks
Eric