Hello,
I'm currently building a material library tool using Telerik's RadListView. I pretty much got it near exactly what I'm after. However, I'm having some trouble with the last feature, and I'm hoping someone can provide some insight.
What I'd like to do is add an icon to the top left-hand corner of each item that will represent their category.
So far, using the following code and a bit of trickery with HTML markup, my ListView Items currently look like this.
(Written in C++)
//Create a new ListView Item
Item = gcnew ListViewDataItem();
//Generate HTML Label
String^ Label = "<html><strong>" + Name + "</strong><br><span style=\"color:f5f5f5\"><i>" + Latin + "</i></span></html>";
Item->Text = Label;
Item->TextAlignment = ContentAlignment::MiddleCenter;
Item->TextImageRelation = Windows::Forms::TextImageRelation::ImageAboveText;
//Load the Thumbnail
String^ thumbnailPath = Path + "\\" + ThumbPath;
Item->Image = Image::FromFile(thumbnailPath);
Item->ImageAlignment = ContentAlignment::TopCenter;
However, what I'd like to achieve is this:
I was hoping there was a Background Image property for ListViewDataItem. However, that doesn't seem to be the case. Is there a clever trick to achieve this? Or is my only option to create a Custom ListViewDataItem as described here? https://docs.telerik.com/devtools/winforms/controls/listview/custom-items
Thanks!
The summary row at top and bottom should not scroll while horizontal scroll.
Hi,
I want to hide grid column but condition is, summary row column should not be hidden.
I want to display summary column but not grid column.
Hi, I need to show a boolean column in a RadGridView.
I would like to show the column as in the attached image, i.e. with a tick for the true value and nothing for the false value.
I would like to use GridViewCheckBoxColumn but, this column always shows values as checkboxes. In my case, the table is readonly, so the standard checkboxed makes the user to think that he can click to change the check value.
I tried using a GridViewTextBoxColumn and using CellFormatting event:
private void radGrid_CellFormatting(object sender, CellFormattingEventArgs e)
{
if (this.DesignMode) return;
if (e.CellElement.ColumnInfo.FieldName == "ScambioPratiche") {
if ((bool)((System.Data.DataRowView)e.CellElement.RowInfo.DataBoundItem).Row["ScambioPratiche"] == true)
{
e.CellElement.Image = MyApp.Main.Properties.Resources.tick;
}
else
{
e.CellElement.Image = null;
}
e.CellElement.Text = string.Empty;
}
else
{
e.CellElement.ResetValue(LightVisualElement.ImageProperty, ValueResetFlags.Local);
}
}
In this way, however, the filter is a text filter and not a checkboxfilter...
Is there a better way to gain my goal, possibly by GridViewCheckBoxColumn ?
Hi
I am playing with the RadRangeSelector. I have associated it to an existing chart. The chart is dynamically filled using data from the database.
In the image here below, the top control is a RadRangeSelector, the bottom control is a RadChartView.
Notice that my bottom chart shows series as stacked. How can I get the RadRangeSelector also showing stacked series?
Also notice that the dates are not inlined between top and bottom. How can the RadRangeSelector be sorted by dates (as my chart is showing)?
Hi,
I'm using Telerik for Winforms 2023.3.1010 on .NET 7.
While trying to configure the position of my label position using PieTwoLabelColumnsStrategy, only the first label seems to be working with DistanceBetweenLabels property.
PieTwoLabelColumnsStrategy strategy = new PieTwoLabelColumnsStrategy()
{
DistanceBetweenLabels = 50,
DistanceToLabel = -100
};
SmartLabelsController smartLabelsController = new SmartLabelsController
{
Strategy = strategy
};
radChartView.Controllers.Add(smartLabelsController);
radChartView.ShowSmartLabels = true;
Here is how I'm filling the chart:
radChartView.AreaType = ChartAreaType.Pie;
radChartView.Series.Clear();
DonutSeries donut = new DonutSeries
{
ShowLabels = true,
LabelMode = PieLabelModes.Horizontal,
DrawLinesToLabels = true,
SyncLinesToLabelsColor = true,
NumberOfColors = categoryCount
};
foreach (var v in totals.OrderByDescending(s => s.Statut))
{
PieDataPoint point = new PieDataPoint(v.Nombre, v.Statut)
{
Label = $"{v.Percentage}% {v.Statut}"
};
donut.DataPoints.Add(point);
}
radChartView.Series.Add(donut);
radChartView.Area.View.Palette = KnownPalette.Metro;
radChartView.SelectionMode = ChartSelectionMode.SingleDataPoint;
radChartView.BackColor = Color.WhiteSmoke;
With small percentages, it doesn't work (except of the right bottom label)
With higher percentages it seems to be working :
The behavior is quite inconsistent.
Thank you for your help.
Hello,
In my gridview, I have a progressBarElement in a grid column as explained here:
When I export, I don't have the progress bar, only values
private void RunExportToExcelML(string fileName, ref bool openExportFile)
{
ExportToExcelML excelExporter = new ExportToExcelML(this.radGridView1)
{
SheetName = "Essai",
SummariesExportOption = SummariesOption.ExportAll,
SheetMaxRows = ExcelMaxRows._65536,
ExportVisualSettings =true,
};
try
{
excelExporter.RunExport(fileName);
RadMessageBox.SetThemeName(this.radGridView1.ThemeName);
DialogResult dr = RadMessageBox.Show("The data in the grid was exported successfully. Do you want to open the file?",
"Export to Excel", MessageBoxButtons.YesNo, RadMessageIcon.Question);
if (dr == DialogResult.Yes)
{
openExportFile = true;
}
}
catch (IOException ex)
{
RadMessageBox.SetThemeName(this.radGridView1.ThemeName);
RadMessageBox.Show(this, ex.Message, "I/O Error", MessageBoxButtons.OK, RadMessageIcon.Error);
}
}
I must be missing something obvious here. Given the class below:
public class ContractForRefinance
{
public int ContrID { get; set; }
public string ContrNumber { get; set; }
public string LoanClass { get; set; }
public DateTime LoanDate { get; set; }
public decimal Balance { get; set; }
}
I'm trying to set up a multi-column listbox with headers like this:
ListViewDetailColumn contrIDColumn = new ListViewDetailColumn("ContrID");
contrIDColumn.Width = 150;
contrIDColumn.HeaderText = "ContrID";
lstContractForRefinance.Columns.Add(contrIDColumn);
ListViewDetailColumn contrNumberColumn = new ListViewDetailColumn("ContrNumber");
contrNumberColumn.HeaderText = "ContrNumber";
contrNumberColumn.Width = 100;
lstContractForRefinance.Columns.Add(contrNumberColumn);
ListViewDetailColumn loanClassColumn = new ListViewDetailColumn("LoanClass");
loanClassColumn.HeaderText = "Description";
loanClassColumn.Width = 100;
lstContractForRefinance.Columns.Add(loanClassColumn);
ListViewDetailColumn loanDateColumn = new ListViewDetailColumn("LoanDate");
loanDateColumn.HeaderText = "LoanDate";
loanDateColumn.Width = 100;
lstContractForRefinance.Columns.Add(loanDateColumn);
ListViewDetailColumn balanceColumn = new ListViewDetailColumn("Balance");
balanceColumn.HeaderText = "Balance";
balanceColumn.Width = 100;
lstContractForRefinance.Columns.Add(balanceColumn);
lstContractForRefinance.ShowColumnHeaders = true;
lstContractForRefinance.ShowCheckBoxes = true;
foreach (var item in applicationManager.ContractForRefinanceList)
{
lstContractForRefinance.Items.Add(item);
}
However, the control looks like this:
What am I missing?
Thanks
Carl
Probably more of a suggestion than a question.
I would like an FileExportMode that is between the 2 existing modes. It creates or overrides the named Sheet in the given XLSX
User could then:
I have grid with hierarchy gridviewtemplate. Is there a way to paginate the child like the master template?
thanks