Hi,
The vb.net code that you post at the following URL, has many errors in it.
http://www.telerik.com/help/aspnet-ajax/grid-saving-settings-on-per-user-basis.html
Most of them are easy to correct, but I don't really know what to do with the following section of code. VS.NET shows many errors for it:
The vb.net code that you post at the following URL, has many errors in it.
http://www.telerik.com/help/aspnet-ajax/grid-saving-settings-on-per-user-basis.html
Most of them are easy to correct, but I don't really know what to do with the following section of code. VS.NET shows many errors for it:
Private Sub Grid_ColumnCreated(ByVal sender As Object, ByVal e As GridColumnCreatedEventArgs)
Dim settings As ColumnSettings = Settings.AutoGeneratedColumnSettings.Find(Function([set] As ColumnSettings) Do
Return [set].UniqueName = e.Column.UniqueName End Function)
Dim column As GridColumn = e.Column
If not (settings is Nothing) Then
SetColumnSettings(column, settings)
End If
End Sub
Thanks,
Brent