private static void ShowCheckedNodes(RadTreeView treeView, Label label) { string message = string.Empty; IList<RadTreeNode> nodeCollection = treeView.CheckedNodes; foreach (RadTreeNode node in nodeCollection) { message += node.FullPath + "<br/>"; } label.Text = message; }
message += node.Value + "<br/>";
Am using radgrid in which am binding my sp ... in my sp am using dynaimic pivot
Name Block Name Type 2012/1/1 2012/1/2 2012/1/3 till 31 for monthly status ....total
xyz IT dom 1 1 1 3
abc f.s dom 3 3 3 9
pqe Finance sea 4 1 2 7
how can i bind dynamic dates to rad grid please help me ..
telerik:RadGrid ID="grdBlock" runat="server" GridLines="None" AllowFilteringByColumn="True"
AllowPaging="True" AllowSorting="True" AutoGenerateColumns="True" ShowGroupPanel="True"
PageSize="25" OnNeedDataSource="grdBlock_NeedDataSource" Skin="Office2007" OnItemCommand="grdBlock_ItemCommand">
<GroupingSettings CaseSensitive="false" />
<ExportSettings HideStructureColumns="true" IgnorePaging="true" FileName="Block"
ExportOnlyData="true" OpenInNewWindow="true">
<Excel Format="ExcelML" />
</ExportSettings>
<MasterTableView>
<Columns>
<telerik:GridTemplateColumn UniqueName="Block_Master_Id" SortExpression="Block_Master_Id"
DataField="Block_Master_Id" Visible="false">
<ItemTemplate>
<asp:Label ID="lblBlockId" runat="server" Text='<%# Bind("Block_Master_Id") %>'>
</asp:Label>
</ItemTemplate>
<ItemStyle HorizontalAlign="Center" />
</telerik:GridTemplateColumn>
<telerik:GridBoundColumn ItemStyle-HorizontalAlign="Center" UniqueName="Block_Name"
DataField="Employee_Name" HeaderText="Employee Name" ReadOnly="true" SortExpression="Employee_Name">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn ItemStyle-HorizontalAlign="Center" UniqueName="Block_Name"
DataField="Block_Name" HeaderText="Block Name" ReadOnly="true" SortExpression="Block_Name">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn ItemStyle-HorizontalAlign="Center" UniqueName="BlockType"
DataField="BlockType" HeaderText="BlockType" ReadOnly="true" SortExpression="BlockType">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
Hi,
I'm trying to create a menu item like the one in the mega dropdown example.
I've added my own html code to one of my RadMenuItem elements which is working fine.
My only problem now is how i can remove the skined background (I'm using the WebBlue skin) and
replace it with a plane white background. The realy importent css classes used in the example
(like "Products") unfortunately are not part of the source code.
Best regards
Martin Horst