or
| <telerik:RadGrid ID="gridMain" runat="server" AllowPaging="True" |
| GridLines="None" Skin="Office2007" AutoGenerateColumns="False" |
| AllowSorting="True" DataSourceID="dsPMail" PageSize="5"> |
| <HeaderContextMenu EnableTheming="True"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </HeaderContextMenu> |
| <PagerStyle Mode="NumericPages" /> |
| <MasterTableView DataKeyNames="RowID,SentBy,DateSent,Body" |
| ClientDataKeyNames="RowID, Body" DataSourceID="dsPMail"> |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </RowIndicatorColumn> |
| <Columns> |
| <telerik:GridBoundColumn DataField="Body" Display="False" UniqueName="Body" ReadOnly="True" Visible="False"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn UniqueName="DateSent" DataField="DateSent" |
| HeaderText="Date Sent" ReadOnly="True" DataType="System.String" DataFormatString="{0:MM/dd/yyyy hh:mm tt}"> |
| <HeaderStyle Width="135em" /> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="SentBy" HeaderText="Sent By" |
| ReadOnly="True" UniqueName="SentBy"> |
| <HeaderStyle Width="120em" /> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="Subject" HeaderText="Subject" |
| ReadOnly="True" UniqueName="Subject"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="RowID" UniqueName="RowID" |
| DataType="System.Int32" Visible="False"> |
| </telerik:GridBoundColumn> |
| </Columns> |
| </MasterTableView> |
| <ClientSettings> |
| <Selecting AllowRowSelect="True" /> |
| <ClientEvents OnCommand="OnCommand" |
| OnRowSelected="OnRowClicked" /> |
| </ClientSettings> |
| <FilterMenu EnableTheming="True"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </FilterMenu> |
| </telerik:RadGrid> |
| var gridControl = document.getElementById("<%= gridMain.ClientID %>"); |
| var txtControl = document.getElementById("<%= txtMail.ClientID %>"); |
| txtControl.style.height = (document.documentElement.clientHeight - gridControl.scrollHeight) + "px"; |
I am using the RadEditor in a site Admin tool, whose directory is a nested application within the main site (main site / Admin)... The main site has an Assets directory where images are stored (main site / Assets / Images) and I would like ImagesPaths to read from this location. I have tried:
~/Assets/Images
../Assets/Images
/Assets/Images
./Assets/Images
None of the above work, File Manager opens blank...
Anyone know how to do this?
Thanks!
G!

| rNode.ImageUrl = "images/icon_navflag.gif" |


