I am attempting to filter results in a RadGrid.
What I am looking for is the programmatic equivalent of selecting the all but (blanks) or not (blanks) option from the filtering area.
I will apply filters of " " and "" but still will get results of " " or varying amounts of whitespace that I don't want in the results. I cannot do this with a composite filter as I cannot capture all of cases of whitespace, but removing (blanks) achieves the correct results.
Thanks
Hi there,
I have read that it should be possible to add 'Viawaypoints' in combination in normal 'Waypoints'.
I however cannot find a c# method other than 'reqRoute.Waypoints.Add(l_sWaypoint);'
What is the right manner to have more than 25 waypoints in my route?
Kind regards,
Victor
I was receiving exceptions when attempting to set range at runtime on the range selector.
System.NullReferenceException
HResult=0x80004003
Message=Object reference not set to an instance of an object.
Source=Telerik.WinControls.ChartView
StackTrace:
at Telerik.Charting.CombinedBarSeriesRoundLayoutStrategy.ApplyLayoutRoundingVertical(LayoutContext context)
So I stripped the form out of the main project and I've put it into a sample application. Commenting out lines 13 and 14 of FrmPerformanceChart.cs leads to different levels of nightmare.
Link to project is sample: testchart
public
void Export(String sFilepath, RadGridView grvExportExcel)
{
try
{
ExportToExcelML exporter = new ExportToExcelML(grvExportExcel);
exporter.SummariesExportOption =
SummariesOption.ExportAll;
exporter.RunExport(sFilepath);
}
catch (Exception)
{
throw;
}
}
Thanks for your help.
Best wish
Elver Cano
Hi,
Is it possible to add shadows to my radforms ?
Thanks for your response
The MultiColumn ComboBox is always selecting a value after data is added to it. Is it possible to have it work almost exactly the same as the DropDownList?
For i As Integer = 1 To 12
Me.MultiColumnComboBox1.EditorControl.Rows.Add(i, "Row " & i)
Me.RadDropDownList1.Items.Add(i)
Next