Hi
I have a radgridview which has a column whose value is set by an expression:
Me.StockGrid.Columns("Total").Expression = "(Qty) *" & CInt(Me.radtextbox1.Text)
I want to use the result of the expression to populate another column in the same grid.
Me.StockGrid.Columns("req").Expression = "(Total – Available)”
The result is always nothing although the total column value calculated by the first expression has a value and available has a value. Is this type of calculation valid?
Regards
joe
... why just opening the window is very slow? with 4 controls of telerik, it takes 3
or more seconds... Imagine 10 controls!! thanks!! Reply. Telerik Admin. ...
http://www.telerik.com/community/forums/winforms/gridview/performance-to-open.aspx
In the RadControls for Winforms Q3 2009 Beta Demo Application in the gridview TabbedChildViews Demo:
When i change the Tabs Position to left or to right then only two tabs ("Details", "Orders") are displayed and the third tab "Perfromance" is not displayed. When there is not enough space to display all tabs at a position there should be a scrollbar or something like this which should auotmatically be displayed so all tabs could be reached.
Kind Regards,
Ramius
In my GridView the user selects a number of rows, and then asks to do some processing based on each of the selected rows, one by one.
The rows are typically selected by "normal" multirow selection, by pressing the shift or ctrl key and clicking the rows/range of rows in question. The last clicked row is then selected, and the arrow to the left is on this row, while the others are marked with blue.
When the processing begins the first (topmost) row and then the rest in sequence. I would like the arrow to follow the row in progress, but by setting CurrentRow, the "multiselection" is cleared, and only the CurrentRow is marked with blue.
Is there a way to programatically move the arrow to the left without clearing the "multiselection"?
Regards, Jill-Connie Lorentsen
Imports System.Web |
Imports Telerik.WinControls.UI |
Partial Public Class RadRibbonForm1 |
Private Sub rbeD1CPT_Click(ByVal sender As Object, ByVal e As EventArgs) Handles rbeD1CPT.Click |
System.Diagnostics.Process.Start("iexplorer.exe", "http://www.google.com") |
End Sub |
Public Sub buttonClickEvent(ByVal sender As Object, ByVal e As EventArgs) Handles rbeD1CPT.Click |
Dim rbeD1CPT As RadButtonElement = TryCast(sender, RadButtonElement) |
System.Diagnostics.Process.Start("iexplorer.exe", DirectCast(rbeD1CPT.Tag, String)) |
End Sub |
End Class |