This is a migrated thread and some comments may be shown as answers.

GridDropDownColumn and  

4 Answers 122 Views
Grid
This is a migrated thread and some comments may be shown as answers.
MD
Top achievements
Rank 1
MD asked on 13 Jul 2011, 08:32 PM
Seems like something changed between 2011 Q1 519 and the latest 2011 Q2 712 version in regards to how nulls are handled with GridDropDownColumns.  All of my GridDropDownColumns where there is a null value in the field assigned to the DataField property I now see the non-breaking space character   instead of nothing or an empty string.  Was this change intentional or a mistake?

4 Answers, 1 is accepted

Sort by
0
Martin
Telerik team
answered on 15 Jul 2011, 09:46 AM
Hello Md,

Indeed you are correct about this behavior in the Q2 release. I have notified our developers about it and they managed to fix it. The next internal build that will be available next week will include this fix and you will be able to download it from the "Internal Builds Downloads" section of your account.

Regards,
Martin
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
Mike
Top achievements
Rank 1
answered on 05 Aug 2011, 03:56 PM
Adding this hack to ItemDataBound seems to fix it for me:
if (!item.IsInEditMode && item["ColumnName"].Text.Contains("nbsp"))
{
    item["ColumnName"].Text = " ";
}

aspx snippet:
<telerik:GridDropDownColumn UniqueName="ColumnName"
0
yoomee kwon
Top achievements
Rank 1
answered on 18 Oct 2011, 07:40 PM
Is the internal build fix available now?
0
Iana Tsolova
Telerik team
answered on 19 Oct 2011, 05:07 AM
Hello Yoomee,

The issue is fixed, yes. Upgrade to the latest official version - Q2 2011 SP1 release on the 15th of September. Or download the latest internal build.

Best wishes,
Iana Tsolova
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
Tags
Grid
Asked by
MD
Top achievements
Rank 1
Answers by
Martin
Telerik team
Mike
Top achievements
Rank 1
yoomee kwon
Top achievements
Rank 1
Iana Tsolova
Telerik team
Share this question
or