Hi,
I'm using IE9 in compaitablity mode. and Kendo UI Web v2012.3.1114.
When I use try undo an existing underlined word, I get the following error:
Line: 24588
Error: Unable to get value of the property '1': object is null or undefined
It seems the issue is with the following line in Kendo.web.js:
I'm using IE9 in compaitablity mode. and Kendo UI Web v2012.3.1114.
When I use try undo an existing underlined word, I get the following error:
Line: 24588
Error: Unable to get value of the property '1': object is null or undefined
It seems the issue is with the following line in Kendo.web.js:
<FONT color="#0000ff" size="1" face="Consolas"><FONT color="#0000ff" size="1"face="Consolas"><FONT color="#0000ff" size="1" face="Consolas">var property = trim(match[1].toLowerCase()),<BR> value = trim(match[2]);<BR></FONT></FONT></FONT>This is fixed by checking for != null first, I assume this is a bug?
property = trim(match[1].toLowerCase()),
value = trim(match[2]);
