Hello,
my goal is to print a PDF-File directly to a printer without showing the print preview.
This is what I tried:
rpd = new RadPrintDocument();
rpd.PrinterSettings.PrinterName = "printer";
rViewer = new RadPdfViewer();
rViewer.LoadDocument(sFileName);
rViewer.DocumentLoaded += rViewer_DocumentLoaded;
static void rViewer_DocumentLoaded(object sender, EventArgs e)
{
//rViewer.PrintPreview(rpd);
rViewer.Print(false, rpd);
}
When I send it directly to the printer ( rViewer.Print(false, rpd); ) it always prints it in portrait-format.
When I use rViewer.PrintPreview(rpd); and then press the Print-Button, it works.
Does anybody have an idea? Thank you!
Hello Telerik Community,
Does anybody know a way to add a tooltip to the column chooser? I know it is not a matter of life or death, but, in one of my projects i condensed a little bit some column header names, and now, when they are on the column chooser nobody, including me, is able to deduce which is the column content :( .
Would be possible to get some reference to the column chooser and add a tooltip to each column?
Best Regards
Andrea
Hello everybody!
Is it possible to display a summary item just as a task item?
I want to have a hierarchy of task all looking the same.
Thanks,
Hello,
I'm facing a pretty strange behavior when unpinning a column in a RadVirtualGrid:
1. Pin (left or right) 1st column
2. Scroll horizontally (to not display 2nd column)
3. Unpin 1st column
4. Scroll horizontally to display 1st column
=> 1st column is hidden, the only way to make it visible is to resize a column or the entire window
It seems to be a bug and I'm trying some workaround:
- Is there a way to force refresh the grid ? (RadVirtualGrid.TableElement.SynchronizeRows is not working in this case)
- Is there an event that can be captured on column pinned state change, in order to force a refresh at this time ?
Regards.
Thanks in advance
Hi,
I was wondering if any one can help me dock a RadButton to the parent container so that when the Radform is opened and the user maximizes or minimizes the screen, the RadButton will autolocate to the same location respective to the current screen size?
Thank you.
Hello
I have two questions about the GridViewComboBoxColumn:
1. When I start editing a cell form a GridViewComboBoxColumn it always clears the currently displayed value. How can I disable that?
2. How can I change the item height of the drop down list? Is there something like the ItemHeight property of the ListElement of a RadDropDownList?
Best regards
Matthias Reiseder