Hi Telerik,
I was wondering on how to use the RadPageViewPage in combination with controls. I was looking for an item list within the RadPageViewPage to add buttons (or other controls) to the Page. But I can't seem to find it (wondering if it actually exists). How should this RadPageViewPage be used? Should I just add normal controls to it from the VS toolbox?
Would be nice to have a items list in this control to add buttons to it. This was the case with the previous version of the OutlookBar if I recall correctly.
Thanks for your information.
Best Regards,
Francois
Hi Telerik,
I use a radGridviews to implement a system which supports downloading files from IIS server.
The column setting is shown below,
<telerik:GridHyperLinkColumn DataTextField="File Name" HeaderText="File Name" UniqueName="File Name" DataNavigateUrlFormatString="IIS_ItemServer\{0}" DataNavigateUrlFields="File Path" />
In addition to downloading files,
is it possible to implement to trigger an extra event/function when clicking the file links by this way?
Thanks you
public
void
SetCurrentCell(
int
rowIndex,
string
columnName)
{
CurrentRow = Rows[rowIndex];
CurrentColumn = Columns[columnName];
}
Bitmap b =
new
Bitmap(openDialog.OpenFile());
myRadRichTextBox.InsertImage(b);