Hello
I am using the following grid: http://demos.telerik.com/aspnet-ajax/grid/examples/groupby/headerandfootertemplates/defaultcs.aspx .
Could you please tell me if the group header message ((Showing 1 of 2 items. Group continues on the next page.)) can be customized by my preferences?
Thank you
I am using the following grid: http://demos.telerik.com/aspnet-ajax/grid/examples/groupby/headerandfootertemplates/defaultcs.aspx .
Could you please tell me if the group header message ((Showing 1 of 2 items. Group continues on the next page.)) can be customized by my preferences?
Thank you
4 Answers, 1 is accepted
0

Princy
Top achievements
Rank 2
answered on 28 Feb 2012, 12:12 PM
Hello,
Try setting the following.
aspx:
Thanks,
Princy.
Try setting the following.
aspx:
<
GroupingSettings
GroupContinuesFormatString
=
"your text"
GroupSplitDisplayFormat
=
"your text"
/>
Thanks,
Princy.
0

adi
Top achievements
Rank 1
answered on 28 Feb 2012, 12:14 PM
And how do I apply my css styles?
Thank you
Thank you
0
Accepted

Jayesh Goyani
Top achievements
Rank 2
answered on 28 Feb 2012, 01:27 PM
Hello ADi,
or
Thanks,
Jayesh Goyani
.RadGrid .rgGroupHeader
{
background-image
:
none
!important
;
background-color
:Red
!important
;
}
or
.myclass
{
background-image
:
none
!important
;
background-color
:Red
!important
;
}
<
GroupHeaderItemStyle
CssClass
=
"myclass"
/>
Thanks,
Jayesh Goyani
0

adi
Top achievements
Rank 1
answered on 28 Feb 2012, 03:04 PM
Thank you. It worked