Hello,
I have a RadGrid, used for data entry that has a DatePicker column and a TimePicker column, each having the associated icon to click for the correct pop-up Picker. There are several rows, so that the grid has to be scrolled vertically on occasion. When this is the case, the calendar and clock icons do not scroll correctly in IE6. See attached images of the grid scrolled up and scrolled down.
I am using the latest version of the ASP.NET AJAX controls: 2013.1.220.40
I have seen some older forum threads mention similar problems can be fixed by adding "position: relative" to the style of the container of the problem elements. The icons are in RadGrid generated table cells with no class definition (second td in code below), so I'm not sure how to add the relative position style to that cell. I've tried setting position:relative for class rcCalPopup. I've tried setting position:relative for rcTable td. Neither worked.
Could you please tell me how to fix the problem?
I have a RadGrid, used for data entry that has a DatePicker column and a TimePicker column, each having the associated icon to click for the correct pop-up Picker. There are several rows, so that the grid has to be scrolled vertically on occasion. When this is the case, the calendar and clock icons do not scroll correctly in IE6. See attached images of the grid scrolled up and scrolled down.
I am using the latest version of the ASP.NET AJAX controls: 2013.1.220.40
I have seen some older forum threads mention similar problems can be fixed by adding "position: relative" to the style of the container of the problem elements. The icons are in RadGrid generated table cells with no class definition (second td in code below), so I'm not sure how to add the relative position style to that cell. I've tried setting position:relative for class rcCalPopup. I've tried setting position:relative for rcTable td. Neither worked.
Could you please tell me how to fix the problem?
<
table
cellspacing
=
"0"
class
=
"rcTable rcSingle"
summary
=
"Table holding date picker control for selection of dates."
style
=
"width:100%;"
>
<
caption
style
=
"display:none;"
>
RadDatePicker
</
caption
><
thead
style
=
"display:none;"
>
<
tr
>
<
th
scope
=
"col"
></
th
>
</
tr
>
</
thead
><
tbody
>
<
tr
>
<
td
class
=
"rcInputCell"
style
=
"width:100%;"
><
span
id
=
"ctl00_BC_G1_GD_ctl00_ctl06_RDIPDate_dateInput_wrapper"
class
=
"riSingle RadInput "
style
=
"display:block;width:100%;"
><
input
id
=
"ctl00_BC_G1_GD_ctl00_ctl06_RDIPDate_dateInput"
name
=
"ctl00$BC$G1$GD$ctl00$ctl06$RDIPDate$dateInput"
class
=
"riTextBox riEnabled"
type
=
"text"
/><
input
id
=
"ctl00_BC_G1_GD_ctl00_ctl06_RDIPDate_dateInput_ClientState"
name
=
"ctl00_BC_G1_GD_ctl00_ctl06_RDIPDate_dateInput_ClientState"
type
=
"hidden"
/></
span
></
td
>
<
td
><
a
title
=
"Open the calendar popup."
href
=
"#"
id
=
"ctl00_BC_G1_GD_ctl00_ctl06_RDIPDate_popupButton"
class
=
"rcCalPopup"
>Open the calendar popup.</
a
></
td
>
</
tr
>
</
tbody
>
</
table
>