0

我有一个telerik radgrid,它的VirtualItemCount 向右对齐。我想把它对齐到左边。我怎样才能做到这一点?

4

1 回答 1

0

我没有找到解决问题的简单方法,所以我在 jQuery 中实现了一个 hack:

            $(".rgInfoPart").each(function(){
                var obj = $($(this).parent().find(".rgPagerButton")[1]);
                $(this).css("left", (obj.position().left + obj.width() + 10) + "px");
                $(this).css("position", "absolute");
            });
于 2012-06-12T17:16:17.210 回答