
How to apply border-radius to EasyUI?
For EasyUI, window and tabs used border-radius, but it does't effect in IE 7 and 8.
I have try to use css3pie to fix it, but fail.
Further, I use javascript to alter htc like this:
<script src="PIE_IE678.js" type="text/javascript"></script>
$(function () {
if (window.PIE) {
$('.window').each(function () {
PIE.attach(this);
});
}
});
It still fail.
How can I use it?