<telerik:RadGrid runat="server" ID="phoneGrid" AutoGenerateColumns="false" > |
<MasterTableView CommandItemDisplay="Bottom"> |
<Columns> |
<telerik:GridEditCommandColumn UniqueName="EditCommandColumn" /> |
<telerik:GridBoundColumn DataField="ContactPhoneid" Visible="false" ReadOnly="true" /> |
<telerik:GridDropDownColumn DataField="PhoneType.PhoneTypeName" HeaderText="Type" ListTextField="PhoneTypeName" ListValueField="PhoneTypeid" DataSourceID="phoneTypeSource" /> |
<telerik:GridBoundColumn DataField="Phone.PhoneNumber" HeaderText="Phone Number" MaxLength="50" /> |
<telerik:GridBoundColumn DataField="Phone.PhoneExtension" HeaderText="Extension" MaxLength="10" /> |
<telerik:GridBoundColumn DataField="Phone.PhoneDesc" HeaderText="Description" MaxLength="50" /> |
<telerik:GridButtonColumn ButtonType="LinkButton" Text="Delete" CommandName="Delete" ConfirmText="Are you sure you want to delete this entry?" /> |
</Columns> |
</MasterTableView> |
</telerik:RadGrid> |
1. GetPath - Gets the parent folder for the deleted item
2. ResolveDirectory - Checks permissions
3. DeleteFile - Deletes the item
4. ResolveRootDirectoryAsTree - Updates the parent tree node
5. ResolveDirectory - Updates the parent tree node ResolveRootDirectoryAsTree - Updates the RadGrid
6. ResolveDirectory - Updates the RadGrid
But, Break point is not coming to the 'DeleteFile' method. Please help me.
Vipin.P.C
<
telerik:GridBoundColumn
DataField
=
"MonthlyIncome"
HeaderText
=
"Monthly Income"
SortExpression
=
"MonthlyIncome"
> </
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
Aggregate
=
"Sum"
DataField
=
"MonthlyIncome"
HeaderText
=
"Monthly Income"
FooterText
=
"All Child records Monthly Income: "
>
</
telerik:GridBoundColumn
>
<
telerik:RadWindow
OpenerElementID
=
"hyp_YT"
BackColor
=
"Yellow"
Style
=
"z-index: 9999"
Height
=
"446px"
Width
=
"784px"
ShowContentDuringLoad
=
"false"
VisibleStatusbar
=
"false"
Animation
=
"Fade"
ID
=
"RadWindow1"
runat
=
"server"
>
<
ContentTemplate
>aaaaaaaaaaaaaaaaaa</
ContentTemplate
>
</
telerik:RadWindow
>
var source = (from r in readData join sen in equipments on r.EquipmentId equals sen.Id
select new
{
Id = r.Id,
CreatedDate = r.CreatedDate,
Value = r.Value,
Name = sen.Name,
EquipmentId = sen.Id
})
.ToList();
chart.PlotArea.Series.Clear();
foreach (var equipment in source.Select(src => src.Name).Distinct())
{
var equipmentLineSeries = new LineSeries
{
DataField = "Value",
Name = equipment,
};
chart.PlotArea.Series.Add(equipmentLineSeries);
}
chart.DataSource = source;
chart.DataBind();
Hi:
I have a Pivot Grid with vertical scrolling and RowGrandTotalHeaderCellTemplate set to some text for every aggregate field. It is set to some text because I did not wanted the aggregate function displayed such as SUM or AVE, etc … I have noticed that the vertical scrolling causes problems on the RowGrandTotalHeaderCellTemplate. The set text of the last aggregate field’s RowGrandTotalHeaderCellTemplate is repeated on all the other aggregated fields’ RowGrandTotalHeaderCellTemplate. These are some of the set properties:
<telerik:RadPivotGrid ID="Name" runat="server" AggregatesLevel="5" ShowDataHeaderZone="False" AggregatesPosition="Rows" Height="700px"
OnNeedDataSource="Name_NeedDataSource" OnCellDataBound="Name_CellDataBound" OnItemCommand="Name_ItemCommand">
<PagerStyle ChangePageSizeButtonToolTip="Change Page Size" PageSizeControlType="RadComboBox"></PagerStyle>
<ClientSettings>
<Scrolling AllowVerticalScroll="True" ScrollHeight="700px"/>
</ClientSettings>
<TotalsSettings ColumnGrandTotalsPosition="None" ColumnsSubTotalsPosition="None" RowsSubTotalsPosition="None" />
5 filters fields
1 column fields
5 rows fields
9 aggregated fields
Is there way I can correct this behavior?
I am using ASP.NET 4.5, Windows 8, Internet Explorer 10.0.9200.16721, Telerik v.2013.2.717.45, C#.
The provided help will be appreciated.
Thanks!
Jose