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 を使用する場合、「Total」などの単純な文字列をフッター行に表示しようとしています。ただし、RadGrid は文字列の先頭にテキストを自動的に挿入するようで、"Custom: Total" と表示されます。これをオフにするにはどうすればよいですか?
それを見つけた。GridBoundColumn の DataFormatString プロパティを次のように設定するだけです。
<telerik:GridBoundColumn HeaderText="Capacity" UniqueName="CapacityType" DataField="CapacityType" ItemStyle-Width="210" ReadOnly="true" FooterAggregateFormatString="{0:g}" Aggregate="Custom" />