Setting the theme name during form initialization does not change the form's theme.
I need to know if RadToolbarForm is derived from RadForm.
Thanks.
I have many Collapsible Panels in my Scrollable Panel, what I need it to do, is if the user expands a panel, I need that panel to scroll to the top of the scrollable panel. Is there a way to pragmatically do this?
TIA.
hi
i have a radgridview in windows form that it has been messed up
its worked good but after a time its not work. i did not change any code
for example cant groupby by drag and drop
i read this post but its not help me
or when i right click and open context menu its freeze and not hide
and has other problem
Hi Team,
While inserting a new row in the radgridview, we are getting an error (Data Exception 'Column' does not allow nulls) in RadGridview 2023.1.314.40.
Except first 2 parameters the remaining params are throwing an error. Please refer the attached screenshot and code block below . Could you please help to solve this issue?
Note: Its working fine in Telerik.WinControls.GridView.dll 2013.3.1127.40
private void BtnInsertNPAPrice_Click(object sender, EventArgs e)
{
try
{
if (GridView.Rows.Count > 0)
{
if (GridView.DataSource != null && ((DataTable)GridView.DataSource).Rows.Count > 0)
{
this.GridView.Rows.Add("Test", "875", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
}
}
}
catch (Exception ex)
{
RadMessageBox.Show(ex.Message, Common.ErrorMsgHeader, MessageBoxButtons.OK, RadMessageIcon.Error);
}
}
Thanks
Rajkannan
Hi, i have radtreeview, in that dynamically i loaded node upto 4 levels, from that i want to select and expand specific node only,
Here i attach sample treeview structure, from that i want to select and expand "11\20\8" and others should be collapsed by button click.
Please reply asap.
Regards
Aravind
Hi, I have radpageview with 2 pages and i use view mode as "ExplorerBar" , once run and i click and expand each page, when i click , the clicked page name appear in title of the radpage and i want to hide that title, bcz it occupy space, so want to remove or hide title of radpageview. Here i attach screenshot.
This is currently appear title.
I want to show without title like this
Pls reply asap.
Regards
Aravind
I'm using a split container to display or hide a "comment history" list view element in a details view. One column contains created DateTime values and the other contains string values of comments a user of the application left.
I use the following cell formatting event code to enable text wrapping on my cells.
private void radListView1_CellFormatting(object sender, ListViewCellFormattingEventArgs e)
{
e.CellElement.TextWrap = true;
}
When the form loads everything, the cells look correct. Fully expanded and no clipped text. When I collapse the panel with the splitter buttons and "hide" the list view element and reopen the panel using the splitter buttons then the text is clipped. See attached files for reference of how I want them to look.
I've tried using RadListView.Refresh() in a dozen different event calls, RadListView.ListViewElement.Update(UpdateLayout) in a dozen different event calls, a synchronizationContext.Post() of the Refresh method in a dozen different event calls, and even direct formatting of the UI hierarchy elements Text Wrap property to true to no avail.
I have the following properties set as indicated in various tutorials for the ListView control:
I have the following properties set for the parent SplitPanel control:
For other relevant properties, I can confirm on a case by case basis since I'm not sure what I'm missing in my problem. Any guidance or advice is very appreciated.
Hi Team,
We are planning to migrate Telerik.WinControls.RichTextEditor.dll (2023.1.314.40) in visual studio 2022.
We are unable to compile the program and getting an errors like below.
What is an equivalent namespaces for following references? Could you please help on this below?
Note: Its working fine in the Telerik.WinControls.RichTextBox.dll (2013.3.1127.40)
example program:
private void InitializeCurrentFontStyles(StyleDefinition styleDefinition) { try { UnderlineType underlineType = (UnderlineType)styleDefinition.GetPropertyValue(Span.UnderlineTypeProperty); this.radBtnUnderlineStyle.ToggleState = underlineType != UnderlineType.None ? ToggleState.On : ToggleState.Off; string fontFamiliy = (string)styleDefinition.GetPropertyValue(Span.FontFamilyProperty); this.radDropDownListFont1.SuspendSelectionEvents = true; this.radDropDownListFont1.Text = fontFamiliy; this.radDropDownListFont1.SelectedValue = fontFamiliy; this.radDropDownListFont1.SuspendSelectionEvents = false; float fontSize = (float)styleDefinition.GetPropertyValue(Span.FontSizeProperty); fontSize = (float)Math.Round(Unit.DipToPoint(fontSize), 1); this.EnsureFontSize(fontSize.ToString()); TextStyle fontStyle = (TextStyle)styleDefinition.GetPropertyValue(Span.FontStyleProperty); this.radBtnBoldStyle.ToggleState = fontStyle.HasFlag(TextStyle.Bold) ? ToggleState.On : ToggleState.Off; this.radBtnItalicStyle.ToggleState = fontStyle.HasFlag(TextStyle.Italic) ? ToggleState.On : ToggleState.Off; } catch (Exception ex) { RadMessageBox.SetThemeName("Office2007Silver"); RadMessageBox.Show(ex.Message, res_man.GetString("ProposalEntityMaster", PNxt_BL.Common.CultureInfo), MessageBoxButtons.OK, RadMessageIcon.Error); } using (InsertTableForm insertForm = new InsertTableForm()) { insertForm.Owner = this; insertForm.ThemeName = "Office2007Silver"; if (insertForm.ShowDialog() == System.Windows.Forms.DialogResult.OK) { this.radRichTextBox1.InsertTable(insertForm.RowsCount, insertForm.ColumnsCount); } } this.radRichTextBox1.DocumentView.Caret.Hide(); }
Thanks,
Rajkannan
Hello,
is it possible to somehow activate a funktion to drag and hold an appointment to the latest possible date and the scheduler will after a few seconds of holding the appointment in this position automatically change the displayed calender to for example the next week so that you can drop the appointment here?
Regards,
Paul