Hi,
I came to know that the Rad Pager works only for the higher level nodes (Pager doesn't know the inner hierarchy items). Is this true irrespective from the type of datasource Collection/XML ?
also, we are planning to have a vertical paging, meaning, dates as columns, first page, 30 days (30 columns), second page, next 30 days (30 columns), and it goes on (do have a certain limit on the no. of pages). Question is, is there any easy way to maintain the node expansion state when user is moving from one page to another page?
It would be one of our critical requirement, Please help up.
Thanks,
Suman
Telerik.Windows.Controls.TreeListView.
TreeListViewRow row = (Telerik.Windows.Controls.TreeListView.TreeListViewRow)radTreeListView1.ItemContainerGenerator.ContainerFromItem(radTreeListView1.SelectedItem);
If I see parent row on the screen, I can reach row.ParentRow but if I don't see parent row on the screen
row.ParentRow is null.
How can I handle this?
Thanks.
Hi,
When I want to export the contents of my richtextbox to html I have the following problem:
When I insert a picture in the document and set the Html export settings to
ImageExportMode.UriSource and I watch in the string that is returned I don’t see a <img> tag.
When I set the properties so he has to go trough a eventhandler, I see that the
UriSource property is empty.
Code :
public string ExportToHtml(RadDocument document)
{
HtmlFormatProvider provider = new HtmlFormatProvider();
HtmlExportSettings settings = new HtmlExportSettings();
settings.ImageExporting += new EventHandler<ImageExportingEventArgs>(settings_ImageExporting);
settings.ImageExportMode = ImageExportMode.ImageExportingEvent;
provider.ExportSettings = settings;
return provider.Export(document);
}
void settings_ImageExporting(object sender, ImageExportingEventArgs e)
{
e.Src = e.Image.UriSource.AbsoluteUri;
}
Kind regards,
Bjorn
MyGridView.ScrollIntoView(
null
, MyGridView.Columns[MyGridView.Columns.Count - 1]);