Hi,
I have being searching in documentation but I have not found anything about it. I need to make a ListView with one texteditable column.
I have generated columns automatically but I need one of that columns editable by user when makes double click.
How can I achieve that?
Thank you and regards!
Hello,
I would like to know if it's easily possible to allow only horizontal moves for all shapes in a radDiagram.
I have tried to play with OnDrag event and I'm able to change the position of the shape at the end of the drag. But during the dragging, I don't know to lock the vertical position of the shape.
I hope my explanations understandable, thanks in advance.
Hello,
I would like to have a RichTextEditor box and above it a few simple buttons (bold, underline, justify left etc etc..). I would like to be able to type in the box and, for example, highlight a word and click the BOLD button to make that word bold.
I would like a SAVE button (or output for testing) that I can use to save the text in the box to a database but in HTML so the bold work could show as <b>The word</b>
Basically I would like to write a small program to update part of my website by saving the HTML text into a database for my website to read.
How can I set RichTextEditor to be an HTML editor?
Apologies if this has been answered elsewhere, I am new here!
Thank you in advance,
Mark
Hello,
I have a radtextbox with a roundrect shape (radius 20).
The control looks good, with the exception of the white background not being properly clipped along the rounded edges and visible over the panel background. See attached image.
I am not sure how to get rid of this and have a nice clean control.
Any suggestions?
hi
why does the column width not fit automatically when adding or deleting a row ?
when loading, it works.
private void DgvTaskRunningLoad() {
using (this.dgvTaskRunning.DeferRefresh()) {
dgvTaskRunning.DataSource = Sql.Dashboard_listTaskRunning();
// layout
dgvTaskRunning.ShowGroupPanel = false;
dgvTaskRunning.ReadOnly = true;
dgvTaskRunning.ShowRowHeaderColumn = false;
dgvTaskRunning.AutoScroll = true;
dgvTaskRunning.MasterTemplate.AutoGenerateColumns = true;
dgvTaskRunning.MasterTemplate.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.None;
dgvTaskRunning.BestFitColumns(BestFitColumnMode.AllCells);
// grid
dgvTaskRunning.Padding = new Padding(10);
// cell
dgvTaskRunning.TableElement.CellSpacing = 3;
// column
foreach (var col in dgvTaskRunning.Columns) {
col.IsVisible = false;
}
dgvTaskRunning.Columns[ColumnTitle.GridTasklistMail.subject].HeaderText = @"Task";
dgvTaskRunning.Columns[ColumnTitle.GridOverviewTimestamp.dashboardUser].HeaderText = $@"User";
dgvTaskRunning.Columns[ColumnTitle.GridTasklistMail.reference].HeaderText = $@"Reference";
dgvTaskRunning.Columns[ColumnTitle.GridCostAccount.costAccount].HeaderText = $@"CostAccount";
dgvTaskRunning.Columns[ColumnTitle.GridTaskTimestamp.timestampStart].HeaderText = $@"Start";
dgvTaskRunning.Columns[ColumnTitle.GridOverviewTimestamp.hoursWorked].HeaderText = $@"hours worked";
dgvTaskRunning.Columns[ColumnTitle.GridTasklistMail.description].HeaderText = $@"Description";
dgvTaskRunning.Columns[ColumnTitle.GridTasklistMail.reference].TextAlignment = ContentAlignment.MiddleCenter;
dgvTaskRunning.Columns[ColumnTitle.GridCostAccount.costAccount].TextAlignment = ContentAlignment.MiddleCenter;
dgvTaskRunning.Columns[ColumnTitle.GridOverviewTimestamp.hoursWorked].TextAlignment = ContentAlignment.MiddleCenter;
// visibility
dgvTaskRunning.Columns[ColumnTitle.GridTasklistMail.subject].IsVisible = true;
dgvTaskRunning.Columns[ColumnTitle.GridOverviewTimestamp.dashboardUser].IsVisible = true;
dgvTaskRunning.Columns[ColumnTitle.GridTasklistMail.reference].IsVisible = true;
dgvTaskRunning.Columns[ColumnTitle.GridCostAccount.costAccount].IsVisible = true;
dgvTaskRunning.Columns[ColumnTitle.GridTaskTimestamp.timestampStart].IsVisible = true;
dgvTaskRunning.Columns[ColumnTitle.GridOverviewTimestamp.hoursWorked].IsVisible = true;
dgvTaskRunning.Columns[ColumnTitle.GridTasklistMail.description].IsVisible = true;
// filtering
dgvTaskRunning.EnableFiltering = true;
dgvTaskRunning.ShowFilteringRow = false;
dgvTaskRunning.ShowHeaderCellButtons = true;
}
}
I'm trying to download Telerik_UI_For_WinForms_2016_3_913_Dev.msi but I'm not able to find it on my Account Downloads. Where can I get to the previous version installers to download them?