Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个telerik radgrid,它的VirtualItemCount 向右对齐。我想把它对齐到左边。我怎样才能做到这一点?
我没有找到解决问题的简单方法,所以我在 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"); });