Hi,
I have some input controls inside a templated edit form.
Look at the the two pictures below. As you can see, the inputs are not following the scrolling... They regain their position when I mouse over it or click somewhere... Is that a known issue ? I searched on this forum, but didn't find anything. This is only happening in IE7.
Thanks.
I have some input controls inside a templated edit form.
Look at the the two pictures below. As you can see, the inputs are not following the scrolling... They regain their position when I mouse over it or click somewhere... Is that a known issue ? I searched on this forum, but didn't find anything. This is only happening in IE7.
Thanks.
5 Answers, 1 is accepted
0
Accepted

Shinu
Top achievements
Rank 2
answered on 10 Sep 2012, 04:50 AM
Hi,
Try setting the following CSS.
CSS:
Thanks,
Shinu.
Try setting the following CSS.
CSS:
<style type=
"text/css"
>
.rgDataDiv
{
position
:
relative
;
}
</style>
Thanks,
Shinu.
0

Jocelyn
Top achievements
Rank 1
answered on 11 Sep 2012, 12:43 PM
Thanks Shinu! It works like a charm!
0

Jocelyn
Top achievements
Rank 1
answered on 18 Jan 2013, 07:55 PM
Hi again!
I just got the same problem with grids using static header and the solution above doesn't work with static header. What is the solution ?
Thanks.
I just got the same problem with grids using static header and the solution above doesn't work with static header. What is the solution ?
Thanks.
0
Accepted

Shinu
Top achievements
Rank 2
answered on 21 Jan 2013, 06:30 AM
Hi,
Try setting the following CSS.
CSS:
Thanks,
Shinu.
Try setting the following CSS.
CSS:
.rgDataDiv
{
position
:
relative
;
}
.rgHeaderDiv
{
position
:
relative
;
}
Thanks,
Shinu.
0

Jocelyn
Top achievements
Rank 1
answered on 21 Jan 2013, 01:31 PM
Thanks Shinu!!