Hi,
We have a combo box with 2 columns ( Lets say Code --> Display member and Description ) and added Composite filters in all visible columns :
this.AutoFilter = true;
if (MutipleColumnSearch)
{
for (int i = 0; i < strVisiblecolumns.Length; i++)
{
FilterDescriptor visibleColFD = new FilterDescriptor(strVisiblecolumns[i], FilterOperator.Contains, null);
this.EditorControl.FilterDescriptors.Add(visibleColFD);
}
this.EditorControl.FilterDescriptors.LogicalOperator = FilterLogicalOperator.Or;
}
else
{
FilterDescriptor filter = new FilterDescriptor();
filter.PropertyName = this.DisplayMember;
filter.Operator = FilterOperator.StartsWith;
this.EditorControl.MasterTemplate.FilterDescriptors.Add(filter);
}
Requirement : On Searching , first it should check exact match with display member else contains search with rest of columns.
For Example : if search with ES ( code ) it should list ES row as first row.
Please find attached images.
I have a chart with several percentile bands, which I want displayed on top of each other. When I create the RangeBarSeries for each and add them, they appear staggered rather than on top of each other (see attached).
I searched the docs and the forum and I found posts for other platforms that suggested setting the CombineMode to None, but that didn't make any difference. I also tried setting the CombineMode to every other possible setting, and also set the StackGroupKey but nothing helped.
I had initially just used the bar series with a transparent bar at the bottom to lift everything up to the proper starting height, BUT I have a switch to go between area and bar, and the area seems to have a bug that made the transparency not work. Ironically with the ranges, the bar fails and the area works.

Hi All!
I am relatively new to Telerik, so just exploring.. I am developing an application in VS 2013 that uses Telerik UI for Winforms.
The titlebar of my application is dynamic, i.e, <AppName>Version:<VersionNo.> where the Version No. is dynamic. Now, I need to show "Version<VersionNo>" with a different backcolor that the rest of the titlebar.
I have so far been unable to find anything that can help. Is this even doable?
Please guide.
Thanks!

Does the current version (2016) of the PDFViewer for WinForms support the loading of the document from a stream (rather than from the file system)?

I have a gridview with 10 columns, only one is editable when not a new row. When I create a NewRow, I want that row to be editable. We've tried many different ways, but we can't get it to work. Any help would be welcome.
Thanks,
Jeff

I have a problem
when right to left dropdownlist=Yes , Items in dropdownlist show left to right
Please help me!

Hi,
I'm still new to Telerik and having a hard time editing cell in the grid when selected the row.
below is my Linq .
var voters = ( from voter in db.VotersLists .OrderBy(c => c.Barangay) from data in db.VotersDatas .Where(b => b.RecId == voter.ID) .DefaultIfEmpty() from leader in db.VotersLists .Where(d => d.ID == data.LeaderID) .DefaultIfEmpty() select new { ID = voter.ID, VotersID = voter.VotersID, Precinct = voter.Precinct, Name = voter.Name, Birthday = voter.Birthday.GetValueOrDefault().ToShortDateString(), Sex = voter.Sex, Barangay = voter.Barangay, Address = voter.Address, PoliticalParty = data.PoliticalParty, IsRD = data.IsRD, LeaderName = leader.Name, LeaderPosition = data.LeaderPosition ,DataID = data.ID.ToString() == null ? "" : data.ID.ToString() }); dg2.DataSource = voters;I tried using the code below and it won't work.
dg2.Rows[dg2.CurrentRow.Index].Cells[10].Value = "Test"; or if (this.dg2.CurrentRow is GridViewRowInfo) { GridViewRowInfo editRow = dg2.CurrentRow; editRow.Cells["LeaderName"].Value = "TEST"; }

