Hi,
I'm working with a RadGridView and add a Template on it with :
GridViewRelation relation = new GridViewRelation(gridView.MasterTemplate, template);
Then I'm trying to customize the view of my gridview because I would like delete all borders on my Template.
I'm trying to do that but it's not enough to delete all borders. What I could do more ?
private void gridView_ViewCellFormatting(object sender, CellFormattingEventArgs e){GridDetailViewCellElement childCell = e.CellElement as GridDetailViewCellElement;GridGroupExpanderCellElement expanderCell = e.CellElement as GridGroupExpanderCellElement;if (e.CellElement.ViewTemplate.Parent != null){e.CellElement.BorderBoxStyle = BorderBoxStyle.SingleBorder;e.CellElement.BorderWidth = 0;e.CellElement.Padding = new Padding(0);}else if (childCell != null){childCell.BorderBoxStyle = BorderBoxStyle.SingleBorder;childCell.BorderWidth = 0;childCell.Padding = new Padding(0);childCell.PageViewElement.Header.Visibility = ElementVisibility.Collapsed;childCell.GridViewElement.DrawBorder = false;childCell.GridViewElement.GroupPanelElement.DrawBorder = false;RadPageViewStripElement stripElement = childCell.PageViewElement as RadPageViewStripElement;if (stripElement != null){stripElement.DrawBorder = false;stripElement.BorderBoxStyle = BorderBoxStyle.SingleBorder;stripElement.BorderWidth = 0;foreach (RadPageViewItem item in stripElement.Items){item.MaxSize = new Size(0, 1);item.Visibility = ElementVisibility.Hidden;}}}Thanks for your help,
Simon

Fluent with RadRibbonBar : Down Arrow to Items always visible event if no item in list
Included a screen shot, mouse over nor mouse click on the down arrow shows anything (normal cause it's empty)
Here's my designer's part that was generated:
// // radRibbonBar2// this.radRibbonBar2.ApplicationMenuAnimantionType = Telerik.WinControls.UI.FadeAnimationType.None;this.radRibbonBar2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(254)))));this.radRibbonBar2.CommandTabs.AddRange(new Telerik.WinControls.RadItem[] {this.radRibbonBarCommandTab2,this.ribbonTab2,this.ribbonTab1});this.radRibbonBar2.ExitButton.Text = "Exit";this.radRibbonBar2.Location = new System.Drawing.Point(0, 0);this.radRibbonBar2.Name = "radRibbonBar2";this.radRibbonBar2.OptionsButton.Text = "Options";this.radRibbonBar2.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;this.radRibbonBar2.Size = new System.Drawing.Size(1096, 171);this.radRibbonBar2.StartButtonImage = global::MorneauShepell.Parametrization.Windows.Forms.Properties.Resources.ArielWhite;this.radRibbonBar2.TabIndex = 2;this.radRibbonBar2.Text = "ArielVal";this.radRibbonBar2.ThemeName = "Fluent";((Telerik.WinControls.UI.RadRibbonBarElement)(this.radRibbonBar2.GetChildAt(0))).Text = "ArielVal";
I had the Telerik UI and I do a winforms app but days after, I downloaded the Xamarin iOS And Android extension, so I need to download the installer and apply the Xamarin extensions to my Visual Studio.
But then... I go back to my old WinForms app and I can´t add a new RadForms Window but the items in tyhe telerik UI toolbox still there!
Also in the top bar before it was a section called Telerik near by File, Debug, etc and now it isnt there
Finally I think that I need to install it again, but when I opened the installer, it say that I have already Telerik UI For WindowsForms
So I Don´t know what to do. Maybe shoul I unistall it and install it again?
But I dont know how to do that.
Help please
Hello,
if I set showClearButton to true and the MaskedEditBox Enabled to false, I can still push the button.
So, I have to set the showClearButton everytime to true or false, by set the EditBox en- or disabled.
I think this isn't nice.
Is there any other way handling this?
Regards Marc

Hello!
I'm trying to insert into a RadPropertyGrid something like in the attached picture.
I'm using a store to populate the grid.
Now I have all the comboboxes which are correctly created (Left, top, Right, Bottom) with their extra button and so on.
The problem now is to group them up with an All property.
Could someone please point out documentation or an example on how to manage this feature? I wasn't able to find it...
Thank you very much!

Have a list view with multiple columns. Is there a way to get the columns to AutoSize similar to a RadGridView of "FILL". I have not found anything yet.
Thanks for the help.

