A
AM
Hi!
I have a datagrid, which is bound to a dataset dsCustomer
(populated through a webservice).
I have selected Sort Expression for few Databound columns
in my Datagrid, and created event handler for the
SortCommand :
DsCustomer.Merge(ws.Cust_Get())
DsCustCont.tblCust.DefaultView.Sort = e.SortExpression
& " ASC"
dgCust.DataBind()
Event gets raised, but there no sorting gets done.
Pleeeeeeeeeeease help
AM
I have a datagrid, which is bound to a dataset dsCustomer
(populated through a webservice).
I have selected Sort Expression for few Databound columns
in my Datagrid, and created event handler for the
SortCommand :
DsCustomer.Merge(ws.Cust_Get())
DsCustCont.tblCust.DefaultView.Sort = e.SortExpression
& " ASC"
dgCust.DataBind()
Event gets raised, but there no sorting gets done.
Pleeeeeeeeeeease help
AM