28 Answers, 1 is accepted
Please excuse us for the inconvenience caused. This is a bug in RadGridView and we are doing our best to provide a fix for the very next release.
Meanwhile no descent workaround can be offered.
Thank you for reporting the problem ! I am updating your telerik points.
Regards,
Pavel Pavlov
the Telerik team
Have you tried our latest build to see of anything changes?
Kind regards,Vlad
the Telerik team
Q1 2011 (version 2011.1.0315)
When I revert back to
Q3 2010 SP1 (version 2010.3.1314)
text wrapping works in the frozen colunms.
I'm referring to our latest build (2011.1.411.1040) - 2011.1.0315 is our official Q1 2011.
All the best,Vlad
the Telerik team
I was loking at this site http://www.telerik.com/products/silverlight/whats-new/release-history/q3-2010-sp1-version-2010-3-1314.aspx
for the list of releases.
Please, follow this link to find our latest internal build with version 2011.1.0411.
Regards,
Hristo
the Telerik team
Indeed the fix for this issue was not included in our latest official release. I have just checked the status of this bug and you may download our internal build next week where such behavior cannot be observed.
Please excuse us for any inconvenience caused.
Vanya Pavlova
the Telerik team
Thank you for getting back to us! I hope that our latest internal build will be available for download on Tuesday. You need to add references to the assemblies related to RadGridView, as follows:
Telerik.Windows.Controls
Telerik.Windows.Data
Telerik.Windows.Controls.Input
Telerik.Windows.Controls.GridView
If you need any further assistance do not hesitate to contact us!
Vanya Pavlova
the Telerik team
Could you give us more details about the problem you are experiencing? Could you attach a screenshot and specify the steps how to reproduce it?
Kind regards,
Yordanka
the Telerik team
This behavior is expected if the wrapped cell is in edit mode. If you want the text to be wrapped in this case you can subscribe for PreparingCellForEdit event and set TextWrapping to Wrap:
private void playersGrid_PreparingCellForEdit(object sender, GridViewPreparingCellForEditEventArgs e) { ((TextBox)e.EditingElement).TextWrapping = TextWrapping.Wrap; }Another possible solution is to use CellEditTemplate for the wrapped column as demonstrated in the attached project.
Let us know if your case is different.
Regards,
Yordanka
the Telerik team
Could you send us a sample project which reproduces this problem? Or could you try to modify the one attached in my previous post? We have tried to reproduce it locally but to no avail.
Kind regards,
Yordanka
the Telerik team
<telerik:RadGridView Name="playersGrid"
ItemsSource="{Binding Players}"
AutoGenerateColumns="False"
FrozenColumnCount="1"
EnableColumnVirtualization="False"/>
</Grid>
I have tried with no column virtualization and again, I cannot reproduce the wrong behavior. Please, refer to this video.
Best wishes,
Yordanka
the Telerik team
I have tested with latest internal build - version .0502. Please, check the attached project. Indeed, the problem can be reproduced with .0419 version when the column virtualization is off.
All the best,
Yordanka
the Telerik team
Error 1 Could not load the assembly file:///C:\Documents and Settings\XXXX\My Documents\XXXX\XXX\XXX\RadGridView_SL4_AR_26\Libs\Telerik.Windows.Controls.dll. This assembly may have been downloaded from the Web. If an assembly has been downloaded from the Web, it is flagged by Windows as being a Web file, even if it resides on the local computer. This may prevent it from being used in your project. You can change this designation by changing the file properties. Only unblock assemblies that you trust. See http://go.microsoft.com/fwlink/?LinkId=179545 for more information. RadGridView_SL4_AR_26
Also will there be another Service pack with this fix that was in the May 2nd build?
Please, make sure that all of the referred assemblies in the project are not blocked. How to unblock assemblies is described on this topic. Also, you may remove all referenced Telerik's assemblies from the project and add them again.
For the time being we have not planned for Q1 2011 SP2 and the next official release will be till the end of July.
Best wishes,
Yordanka
the Telerik team
I too am having this same problem. I think I figured out the pattern however and it has to do with whether the column with the wrapping is a frozen column or not.
If you remove the frozen column count the grid resizes the rows with the wrapping text without a problem. If you put the frozen column count to include columns without text wrapping, it works fine. Now if you put the frozen column count (or even adjust the frozen column line) to include column that has wrapping enabled and the text does in fact wrap, the grid distorts and the rows do not resize to show all the text; in fact if you move the line yourself the rows resize to only show one line of text.
Please, try the latest internal build (version .0516) and let us know in case the problem still occurs.
All the best,
Yordanka
the Telerik team
This build does in fact fix the issue.
I am facing similer kind of oroblem. FrozenColumnsCount is working when i am scrolling horizondally. But not working working when I use tab key. can you tell why this happens.
