I have the following method which adds a new column to a Telerik RadGridView:
private void CreateNewColumn(FieldDescriptor fd, uint fieldno) {
fieldGrid.Columns.Add(new GridViewDataColumn() {
UniqueName = fd.fieldName,
Header = fd.displayName,
DataMemberBinding = new Binding("Fields[" + fieldno + "]"),
...
I want to add a tooltip using ToolTip class on a column of a grid in winforms.
I want this because I need to extend duration of builtin grid tooltip in radgridview. If you can help me in settings the time of builtin tooltip of grid then it would also be sufficient.
EDIT: Can anybody just tell me that is it possible or not?
Thanks.
...
I want to save grid columns as rows in db. Please see the following image.
Columns 'Full Package' is saved as row in db but I have make it as column. 'Package for 1' is new record, each Event Member must be saved as individual record in db. There might be more columns like this.
I need to save/update records in one go.
Thanks.
...
I have a hierarchical telerik RadGridView in my WPF application. I want to export this grid to Csv format. Whenever I try to do this, only the records in the master table are displayed in the csv file. I want the hierarchical structure to be displayed in the Csv format. Can anyone help me with this? In case my query is not clear, please ...
WPF and C#:
Problem:
1. How to Refresh Radgridview when i Insert,update and Delete Record in database anrecord.
2.when i am Insert or Update Record than in radgridview that row is selected.
i am useing sql server 2005.
i am use to set data source of radgridview like " radgridview1.ItemsSource = ds; " ==> ds is dataset.
i am b...
Hi,
I would like to do something similar what we do in ASP.NET where we parse through all the rows in a GridView and assign a particular value to a particular cell in a row which has a matching TaskId as the current Id.
This has to happen in a Tick function of a Dispatcher Timer object. Since I have a Start Timer button Column for ever...
Good day!
I have a class names Sales:
public class Sales : BaseDomain
{
public virtual string Name { get; set; }
ICollection<ActivityCategory> categories = new List<ActivityCategory>();
}
I bind this a List of items of this class to a RadGridView:
grid.ItemSource = e.Result;
where e.Result is a List.
For column "Name" ...
The theme package .tssp created locally it not getting applied for a radgridview.Please help
ThemeResolutionService.LoadPackageFile(@"C:\LeNin\My Document\\xyz.tssp");
ThemeResolutionService.ApplicationThemeName = "xyz";
...
After rendering full grid I need to change data context of selected Row since initially "simple" objects are filled as data source and when single item is selected (looking at RowDetailsVisibilityChanged event), then I want to change DataContext to complex object, that shows much more info in details than in collapsed row.
Using GridVie...
Hi there.
Here is what I want to achieve:
I have RadGridView, let's call it gridView, with two columns - first contains ordinary text (GridViewDataColumn), second is a GridViewComboBoxColumn. Each row consist of property (first column) and possible values (displayed in comboBox in second column) which vary for each property. For example...
I have a user control and within it I have two controls: 1) a search criteria control (custom user control) and 2) a Telerik RadGridView.
Apart from that I have a window that is the shell for my application and in it exists three regions. When this window opens I click a button and the user control mentioned above gets inserted into on...
i want to get this binding value with Row_Click Events,but it doesn't work.help
private void Row_Click(object sender, RoutedEventArgs e)
{
RadButton b = e.OriginalSource as RadButton;
string guid = b.DataContext.ToString();
int type=1;
if (((Silverlight.BindableObject)(this.grvinf...
how to Combine the gridview title in silverlight opening?
...
I have a Silverlight UserControl with a Telerik RadGridView control and a handful of button controls. The problem is that when I edit a cell in the grid view and then click any of the buttons the button command does not execute until; the button is selected a second time. The first press seems to remove the focus from the RadGridView a...