Open GoogleCodeExporter opened 9 years ago
Opps. i think its fixed. downloaded new version.. works now
Original comment by miragegl...@gmail.com
on 24 Dec 2010 at 1:50
hang on. the problem is still valid. tested on 1.4.3 and works. 1.4.4 breaks.
Original comment by miragegl...@gmail.com
on 25 Dec 2010 at 9:27
I also have this issue, has anyone resolved?
Original comment by JeremyCh...@gmail.com
on 5 Jan 2011 at 6:49
Line 455 in the 2.1.1 source:
var trans = filter ? parseInt(/alpha\(opacity.(\d+)\)/.exec(filter)[1]) : 100;
// IE8 bug fix
if you test the regular expression against filter first, you won't get an error
if exec() returns null. So:
var regExpFilter = /alpha\(opacity.(\d+)\)/;
var trans = regExpFilter.test(filter)[1] ?
parseInt(regExpFilter.exec(filter)[1]) : 100; // IE8 bug fix
Original comment by dr.za...@gmail.com
on 14 Jan 2011 at 8:09
this last debug works fine in IE8 ! thanks!
Original comment by corentin...@gmail.com
on 31 Mar 2011 at 10:20
dr.za...
Where does this code go? I think this is the fix, but I have no idea where to
put the code.
Thanks for the help!
Original comment by dbran...@ausrad.com
on 23 Apr 2011 at 9:40
@dbran...
I had the same problem, so I edited the existing (full code) and packed it
again. Give it a try...
Original comment by karel.pe...@gmail.com
on 4 May 2011 at 9:06
Attachments:
[deleted comment]
@karel,
Thanks for the file. It fixed the issue with IE8
Original comment by sunil.ga...@gmail.com
on 11 May 2011 at 4:36
Thanks!
Fixed for IE8 Standard mode thanks thanks thanks.. Dr Za
Original comment by sonu.bi...@gmail.com
on 10 Jun 2011 at 10:57
Great IE8 fix. Thanks.
Original comment by trose...@gmail.com
on 28 Jun 2011 at 7:06
Thank you very much @Karel..
Was debugging for same from yesterday finally got here....:)
Thanks Again ..
Original comment by sonu.bi...@gmail.com
on 24 Aug 2011 at 9:31
@Karel.
Today, I got a bug for my registration form. i am using asp.net validator but
in middle i have also done some custom validations by hiding some table row and
span in it.
When i revoke that table row and span, rounded effects not applied to the span
on which i am applying the rounded corners.
My validation error comes in rectangle without rounded effect.
I have checked below with the site instructions
http://www.curvycorners.net/instructions/
I found Using Asp.Net option and redraw function to revoke, but @Karel i am
using you
jquery.curvycorners.js script in which curvyCorners function is not defined so
i get that error in ie of undefined.
Also i have try to use there curvycorner.js from there site but i get error
Object doesn't support this property or method.
And it gives nothing to redraw alert from there curvycorner.js file and also no
rounded effects applied to validation errors.
This is the code i am using with your script it works fine for default
validation errors, but not for the case i have mentioned above.
<!--[if lte IE 8]>
<script src="/Scripts/CurvyCorners/jquery.curvycorners.js"
type="text/javascript"></script>
<script type="text/javascript">
$(window).load(function () {
//For Rounded Corners on top Navigation
$(function(){
settings = {
tl: { radius: 6 },
tr: { radius: 6 },
bl: { radius: 6 },
br: { radius: 6 },
antiAlias: true,
autoPad: false,
validTags: ["div"]
}
$('.errorBg').corner(settings);
});
});
</script>
<![endif]-->
One doubt would you please clear?
If i use the script file from curvycorners website so do i have to include
jquery file for same?
But i am seeing no reference to any jquery file in there website?
Can you please help me out how i can redraw the elements with your script.
Urgent reply would be more helpful.
Thanks.
Original comment by sonu.bi...@gmail.com
on 25 Aug 2011 at 12:01
really valuable replys ...
it is working fine thank you
Original comment by krishnak...@gmail.com
on 6 Jun 2013 at 4:55
Original issue reported on code.google.com by
miragegl...@gmail.com
on 24 Dec 2010 at 1:39