or
<
telerik:GridBoundColumn HeaderText="Location" DataField="LOCATION" UniqueName="LOCATION" ReadOnly="true" SortExpression="LOCATION" HeaderButtonType="TextButton" >
<HeaderStyle Width="1px" />
<ItemStyle Width="1px" />
</telerik:GridBoundColumn>
<
telerik:GridBoundColumn HeaderText="Location" DataField="LOCATION" UniqueName="LOCATION" ReadOnly="true">31R050</telerik:GridBoundColumn>
Thanks so much for your help.
Hi, I'm trying to pull just the node Values using a Linq query
IList<RadTreeNode> nodeCollection = RadTreeViewSearchItems.CheckedNodes;
var myvalues = nodeCollection.Select(n => n.Value);
or
var myvalues = nodeCollection.Select(n => n.Value).ToList();
returns...
Expression cannot contain lambda expressions
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="ztest6.aspx.vb" Inherits="ztest6" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
></
title
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
asp:ScriptManager
ID
=
"sm1"
runat
=
"server"
></
asp:ScriptManager
>
<
div
style
=
"width:600px;"
>
<
telerik:RadEditor
Skin
=
"Default"
ID
=
"RadEditor1"
runat
=
"server"
Width
=
"100%"
Height
=
"300px"
ToolsFile
=
"~/includes/NoTools.xml"
>
</
telerik:RadEditor
>
</
div
>
</
form
>
</
body
>
</
html
>
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
root
>
<
tools
name
=
"EnhancedEditToolbar"
dockingZone
=
"Top"
dockable
=
"true"
enabled
=
"true"
>
<
tool
name
=
"ToggleScreenMode"
Text
=
"Toggle Full Screen"
ShowText
=
"True"
/>
</
tools
>
</
root
>