Hello,
My application is already using Telerik radgrid and I need to implement Batch Editing on it.
See the following .ascx code:
See the followinng .ascx.vb code:
On the above scenario, I need to implement Batch Editing but needs to be done all on the code behind because the number of columns and the column type may vary every time.
Please let us know if you guys need any more details.
Thanks,
Shouvik
My application is already using Telerik radgrid and I need to implement Batch Editing on it.
See the following .ascx code:
<
telerik:RadGrid
ID
=
"dgEscrow"
runat
=
"server"
GridLines
=
"None"
EnableEmbeddedSkins
=
"false"
AutoGenerateColumns
=
"false"
ShowFooter
=
"true"
CssClass
=
"esGridTable"
>
<
HeaderStyle
Font-Bold
=
"true"
HorizontalAlign
=
"Center"
/>
<
ClientSettings
>
<
ClientEvents
OnGridCreated
=
"setScrollerDimensionsEscrow"
/>
<
Scrolling
AllowScroll
=
"true"
SaveScrollPosition
=
"true"
/>
</
ClientSettings
>
</
telerik:RadGrid
>
See the followinng .ascx.vb code:
Public Sub BindDG(Optional ByVal isPrintPage As Boolean = False)
Dim edt As New EscrowDataTable(TractGID)
Dim dt As DataTable = edt.GetDataTable
Dim dv As DataView = dt.DefaultView
With dgEscrow
.CellSpacing = 0
.ItemStyle.CssClass = "esGridRow"
.AlternatingItemStyle.CssClass = "esGridRow"
End With
dgEscrow.DataSource = dv
dgEscrow.DataBind()
End Sub
On the above scenario, I need to implement Batch Editing but needs to be done all on the code behind because the number of columns and the column type may vary every time.
Please let us know if you guys need any more details.
Thanks,
Shouvik