Hey guys,
It is possible to export the data in radGridView to Excel, including the summary rows, I have a grouped grid with summary rows, I haven't found a way to export the grouped grid, but at least I would like to know if I can include the summary rows.
PS: If I can export with the theme style, it would be great
Thank you!
Hello
I need to perform a drag from a radgridview onto a radtextboxcontrol (which is in a talelayout which is in a PageView control ..)
I have managed to implement a drag and drop within a gridview to reorder the lines
and to do a drag from a grid view and drop on another gridview
but I can't find how to do a drag from a gridview and a drop on the textboxcontrol.
I guess this is related to the OLEDragandDrop and the RadGradDorpServices but I'm stuck.
Thanks in advance
Hey,
I'm working on Telerik UI for Winforms version 2019 R3. I have to implement in my project below functionality:
Is any possible to realize above points?
I found something about custom layer https://www.telerik.com/forums/text-selection-and-highlight but the solution is in WPF.
Thanks
Hi-
We're trying to add multiple summary rows to a gridview, similar to the single ones being added here:
https://docs.telerik.com/devtools/winforms/controls/gridview/rows/summary-rows
Using that example, I added one total, but can't figure out how to add the others that I need: The example code below just shows a total for TotalTax, but not the others. Can you point me to any documentation that shows how to do this? Thanks, Evan
Me.RGV_RIA_Input_Summary.MasterTemplate.ShowTotals = True
Dim summaryItem As New GridViewSummaryItem()
Dim summaryItemState As New GridViewSummaryItem("State", "{0}", GridAggregateFunction.Last)
Dim summaryItemTotalTax As New GridViewSummaryItem("TotalTax", "Total Tax = {0}", GridAggregateFunction.Sum)
Dim summaryItemGrossSales As New GridViewSummaryItem("GrossSales", "Total Gross Sales = {0}", GridAggregateFunction.Sum)
Dim summaryItemExemptionAmount As New GridViewSummaryItem("ExemptionAmount", "Total Exempt = {0}", GridAggregateFunction.Sum)
Dim summaryItemTotalTaxableSales As New GridViewSummaryItem("TotalTaxableSales", "Total Taxable = {0}", GridAggregateFunction.Sum)
Dim summaryRowItem2 As New GridViewSummaryRowItem(New GridViewSummaryItem() {summaryItemState, summaryItemTotalTax, summaryItemGrossSales, summaryItemExemptionAmount, summaryItemTotalTaxableSales})
Me.RGV_RIA_Input_Summary.SummaryRowsTop.Add(summaryRowItem2)
hi
how i can create a chart 3D linear
Thank you for giving me an example.
Hi Team,
I have changed the backcolor of the tooltip with below code but it is not working,
RadToolTip toolTip =
new
RadToolTip();
toolTip.IsBalloon =
true
;
toolTip.BackColor = Color.LightSkyBlue;
toolTip.SetToolTip(
this
.button1,
"Telerik test"
);
RadGridView.MasterGridViewTemplate.Filter.ToString()
easily gives me the current filter(s) .
Would be real nice if there were a just as easy way to set (restore) filter(s).
I still haven't figured out how to set the filters.
I guess I'll have to start with
Dim item As New Telerik.WinControls.Data.FilterExpression
RadGridView.MasterGridViewTemplate.FilterExpressions.Clear()
... not sure how to parse the string I got above and how to build it into item
RadGridView.MasterGridViewTemplate.FilterExpressions.Add(item)
Hello
I have a Command bar with one row and three StripElements
Depending on some condition I wish to programmatically set the second strip element to visible or collapsed.
When I change the visibility property of the second strip element from Visible to Collapsed it is no longer visible but the third strip element does not move against the first strip, an empty space remains between the first end the third strip.
Also I have set the grip and overflow visibility to collapsed on all three strip elements.
How can I "force" the collapsing to occur ?
Thanks in advance
PJ
Hi,
My issue is when I try to export the RadGridView data to excel I cant compile.
Language : VB.net
Using this code snippet
getting error on this line
Dim
renderer
As
New
Telerik.WinControls.Export.SpreadExportRenderer()
image attached for better understanding.
can anyone tell me what I am doing wrong?
isn't SpreadExportRenderer member of Telerik.WinControls.Export ?