Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
<style type=
"text/css"
>
.rgExpand
{
background-image
:
url
(
'../Images/Expand.gif'
)
!important
;
/* set url of Expand image */
background-position
0px
}
.rgCollapse
'../Images/Collapse.gif'
/* set url of Collapse image */
</style>
protected
void
RadGrid1_ColumnCreated(
object
sender, GridColumnCreatedEventArgs e)
if
(e.Column
is
GridExpandColumn)
as
GridExpandColumn).ButtonType = GridExpandColumnType.ImageButton;
GridExpandColumn).ExpandImageUrl =
"../Images/Expand.gif"
//set Expand image url
GridExpandColumn).CollapseImageUrl =
"../Images/Collapse.gif"
//set Collapse image url
<Columns>
<telerik:GridExpandColumn
UniqueName="showMsgs"
CommandName="showAppMessages"
ExpandImageUrl="~/images/icons/singlePlus.gif"
CollapseImageUrl="~/images/icons/singleMinus.gif"
ButtonType="ImageButton">
<ItemStyle Width="20px" />
</telerik:GridExpandColumn>
</Columns>