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.
私はtelerikradgridを持っています、そのVirtualItemCountは右に揃えられています。左揃えにしたいと思います。どうすればこれを達成できますか?
問題の簡単な解決策が見つからなかったため、jQueryにハックを実装しました。
$(".rgInfoPart").each(function(){ var obj = $($(this).parent().find(".rgPagerButton")[1]); $(this).css("left", (obj.position().left + obj.width() + 10) + "px"); $(this).css("position", "absolute"); });