Hi there,
I've been tasked with migrating DataTable functionality to Telerik RadGridView in a C# WinForms app.
DataTable code sample:
var taxColumn = new DataColumn();
taxColumn.DataType = System.Type.GetType("System.String");
taxColumn.ColumnName = "tax";
taxColumn.Expression = "SUBSTRING('ABC',2,3)";
My attempt to do the equivalent using a RadGridView TextBoxColumn fails with "unknown function SUBSTRING()".
Is there any similar functionality in RadGridView to the Substring function in DataColumn please? It's essential to be able to write expressions that do substirng operations in the app I'm working on.
Thanks as ever for your help!
Kind regards, James