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

DatePopupButton Images style

3 Answers 87 Views
Input
This is a migrated thread and some comments may be shown as answers.
Damodar
Top achievements
Rank 1
Damodar asked on 03 Aug 2011, 06:34 AM

Hi,

 I am using RadDatePicker I have own image for the Icon.
 Am able to show it but it has border. could not remove it.
 Where should I apply style for it?


Best Regards,
Damodar

3 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 03 Aug 2011, 08:03 AM
Hello Damodar,

Try the following CSS to remove the border.
CSS:
<style type="text/css">
.RadPicker_Default .rcCalPopup, .RadPicker_Default .rcTimePopup
{
  border:none !important;
}
</style>

Thanks,
Shinu.
0
Damodar
Top achievements
Rank 1
answered on 04 Aug 2011, 12:04 AM
Hi Shinu,

Still no luck.
It's working fine in Google Chrome but not in IE8.

Best Regards,
Damodar
0
Princy
Top achievements
Rank 2
answered on 31 Jul 2013, 10:13 AM
Hi Damodar,

Please try the following JavaScript to remove the border.

JavaScript:
<script type="text/javascript">
    function pageLoad() {
        document.getElementById("RadDatePicker1_CalendarPopupButton").style.border = "none";
    }
</script>

Thanks,
Princy.
Tags
Input
Asked by
Damodar
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Damodar
Top achievements
Rank 1
Princy
Top achievements
Rank 2
Share this question
or