<asp:Repeater ID=
"Repeater1"
runat=
"server"
DataSourceID=
"SqlDataSource1"
>
<ItemTemplate>
<telerik:RadContentTemplateTile ID=
"RadContentTemplateTile1"
runat=
"server"
Skin=
"Telerik"
>
<ContentTemplate>
<div>
Name:<%# Eval(
"Name"
)%>
</div>
</ContentTemplate>
<PeekTemplate>
<div>
peek here
<telerik:RadButton ID=
"RadButton2"
runat=
"server"
Text=
"RadButton"
></telerik:RadButton>
</div>
</PeekTemplate>
<PeekTemplateSettings Animation=
"Slide"
ShowPeekTemplateOnMouseOver=
"true"
HidePeekTemplateOnMouseOut=
"true"
/>
</telerik:RadContentTemplateTile>
</ItemTemplate>
</asp:Repeater>
<
telerik:RadDatePicker
runat
=
"server"
ID
=
"MyDatePicker"
Calendar-RangeSelectionMode
=
"ConsecutiveClicks"
/>
I am using Telerik radgrid (version 2013.3.1015.35) control with grouping enabled. I need to know whether radgrid support paging/custom paging within a group. If so, how to implement.
I am trying to implement paging within the group as marked in red in the image attached. (pagination control can be default telerik pagination control)
I’ve been trying to get a Title for the pdf export in HTML format, and so far, no luck. I’ve seen every discussion about it and the help in the Grid documentation. So far, not cool at all.
I want to create a complex HTML div, with multiple tables, company logo, project information, filter information, and other important report information. I’m including a simple sample, if you can help me format it correctly so it can work, that would be great; if you can create a sample of a div with multiple tables, that would be great too.
Thank you,
-Sam
<
div
style
=
"font-family: Arial; font-size: medium; width: 100%"
>
<
table
style
=
"width: 100%"
>
<
tr
>
<
td
style
=
"width: 25%"
>
<
table
style
=
"text-align: left"
>
<
tr
>
<
td
rowspan
=
"3"
style
=
"vertical-align: middle"
>
<
img
alt
=
""
src
=
"../Images/2Forecast_100.png"
width
=
"200px"
/>
</
td
>
<
td
style
=
"padding-left: 10px"
>
ForecastName
</
td
>
</
tr
>
<
tr
>
<
td
style
=
"padding-left: 10px"
>
PrevForecastName
</
td
>
</
tr
>
<
tr
>
<
td
style
=
"padding-left: 10px"
>
FilterDesc
</
td
>
</
tr
>
</
table
>
</
td
>
<
td
style
=
"width: 50%; vertical-align: top;"
>
<
table
style
=
"width: 100%; text-align: center;"
>
<
tr
>
<
td
style
=
"font-size: large; font-weight: bold; text-align: center; width: 100%;"
>
Job Forecast Report
</
td
>
</
tr
>
<
tr
>
<
td
style
=
"font-weight: bold"
>
JobName
</
td
>
</
tr
>
</
table
>
</
td
>
<
td
style
=
"width: 25%; text-align: right; padding-right: 20px; vertical-align: middle;"
>
<
table
style
=
"float: right"
>
<
tr
>
<
td
>
Comments
</
td
>
</
tr
>
</
table
>
</
td
>
</
tr
>
</
table
>
</
div
>
if
($telerik.isIE) {
var
textarea =
this
._getSubjectTextBox().get_element();
textarea.style.cssText = textarea.style.cssText;
}
<
AdvancedEditTemplate
>
<
scheduler:AdvancedForm
runat
=
"server"
ID
=
"AdvancedEditForm1"
Mode
=
"Edit"
Subject='<%# Bind("Subject") %>'
Description='<%# Bind("Description") %>' Start='<%# Bind("Start") %>' End='<%# Bind("End") %>' AllUsers='<%# Bind("AllUsers") %>'/>
</
AdvancedEditTemplate
>
<
AdvancedInsertTemplate
>
<
scheduler:AdvancedForm
runat
=
"server"
ID
=
"AdvancedInsertForm1"
Mode
=
"Insert"
Subject='<%# Bind("Subject") %>'
Start='<%# Bind("Start") %>' End='<%# Bind("End") %>' Description='<%# Bind("Description") %>' AllUsers='<%# Bind("AllUsers") %>' />
</
AdvancedInsertTemplate
>
[Bindable(BindableSupport.Yes, BindingDirection.TwoWay)]
public
bool
AllUsers
{
get
{
return
cboxAllUsers.Checked;
}
set
{
cboxAllUsers.Checked = value;
}
}