Hi,
I tried to update infragistics from v11.2 to v12.1.
Everything seems ok, but I got this error when I try to load a page that contains webhierarchicaldatagrid.
"Unable to get value of the property 'header': object is null or undefined"
What am I missing?
Thank you
Hi soniaalves,
This was a bug in the RTM. It should be resolved in the first Service Release.
regards,
David Young
Ok,
Thanks for the reply.
Hi again,
I've already updated Infragistics from v11.2 to v12.1.
Then I installed the service release as you said on the previoust post and now I have no errors. Everything seems to be working fine.
But i'm facing an issue: I have a webdropdown. On the code-behind I set the datasource of my webdropdown.
When I load the page, the webdropdown loads all the items correctly. When I select a value, I need to see what is in the Current Value of WebDropDown, but if the Current Value has space character it is converted to %20. Here's an example:
Let's suppose that Current Value is "Sonia Alves", but when I try to catch this on the code-behind it returns "Sonia%20Alves".
Before the conversion to v12.1 it didn't have this behaviour. Am I missing anything?
Please refer to this thread regarding your issue - http://forums.infragistics.com/forums/p/67103/341063.aspx.
Let me know if this helps.
Thanks for reply.
"string htmlValue = WebDropDown1.CurrentValue;
string decoded = HttpUtility.UrlDecode(htmlValue);
Alternatively you could use SelectedItem.Text property of the WebDropDown. "
Great solution, but now I have to apply this in all my webdropdowns of the project...
Thanks anyway