15 Answers, 1 is accepted
We have found a way to reintroduce Edit c Copy in Blend and this fix will be available in an upcoming service pack roughly at the end of next month. It is possible however to have this fixed and available in a prior to that internal build.
Right now your only option is to drop a GridViewRow in Blend's design surface, edit its template by selecting from the menu Object -> Edit Style -> edit a Copy ...
Once done you can delete the GridViewRow you just dropped and apply the style to the RadGridView's RowStyle property.
I hope this will do until we get this Blend matter resolved.
Regards,
Kalin Milanov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
http://www.telerik.com/help/wpf/styling-radgridview-rows.html
Like:
Blend will update and will provide you the style properties for the style. In this case we will change the Background property to RowBackground and BorderBrush property to RowBorder.
And:
To do this from the menu select Object > Edit Other Styles > Edit RowStyle > Edit Style.
Doesn't even exists here.
I really need to edit the style since the default style doesn't match with the rest of the program. Any other idea's how to resolve this?
Please find attached a sample application which contains a RadGridView with attached row style and template to it so you can edit it to match your design.
Also you might want to check out this article, especially the Styling GridViewHeaderCell for another view on how to style control parts.
All the best,
Kalin Milanov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Thanks
Telerik Q2 2011
Expression Blend 4
Create empty is the only option.
Problem is also available in version 2011.3.1214.40.
Could you check what is wrong ?
Thanks,
Regards,
Julien Dutto
Unfortunately we have some issues related to the Blend support for RadGridView/WPF. I'll recommend you to use the following approach:
1.Find in Assets library a single GridViewRow.
2.Drag it onto the Artboard, right click on it and choose the option Edit Template -> Edit a copy.
You may use the same approach for any other GridView part.
Vanya Pavlova
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>
Thanks a lot for your answer. Do you have an estimated date when a fix could be provided for Blend support ?
Indeed, it is quite problematic for our designer who doesn't have the full WPF knowledge and who is wasting a lot of time on style editing.
Thanks a lot,
Regards,
Julien.
We will do our best to provide a fix for this issue for the next official release.
Can you verify how the suggested workaround works for you? It is quite the same, however you should modify the styles element by element, not directly through the RadGridView and "Edit Additional Templates" option. Indeed this is the only one diffference.
If you have any additional questions about styling Telerik RadControls/WPF do not hesitate to contact us!
Vanya Pavlova
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>
Indeed, this way is working perfectly.
Do you know if this is a more general problem ? The "Edit a copy" option is unavailable for almost all the Rad controls we are using.
Thanks a lot for your responsiveness.
Regards,
Julien.
1. Create a brand new WPF project in Blend.
2. Manually add references to the controls you need to use.
3. Drag a single RadButton or any other RadControl (not templated part of RadGridView) onto the ArtBoard, right click on it and choose the option Edit Template->Edit a copy.
Vanya Pavlova
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>
I hope you can answer this and that there is a solution, because I need to do a lot of flickering on the default style, but I don't want to do massive changes them.
The logic behind the grid lines is internally incorporated within the templates of GridViewRow (horizontal)/GridViewCell(vertical). There is no way to modify properties such as BorderBrush/BorderThickness using a simple style. If you want to modify either the horizontal/vertical gridlines and their thickness you should predefine the templates of GridViewRow/GridViewCell.
In addition to this you may also use the properties of RadGridView HorizontalGridLinesBrush/VerticalGridLinesBrush:
<
telerik:RadGridView
ItemsSource
=
"{Binding Path=Items}"
HorizontalGridLinesBrush
=
"Red"
VerticalGridLinesBrush
=
"Blue"
/>
Greetings,
Vanya Pavlova
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>