Browse by Tags
All Tags » Databinding (RSS)
Showing page 1 of 4 (38 total posts)
-
I am trying to set the ReadOnly Property of a DataCell based on the value in the DataCell being equal to the value in an ordinary TextBox outside of the DataGrid.
This is what I am trying to implement:
<Style TargetType=''{x:Type xcdg:DataCell}''>
<Setter Property=''ReadOnly'' Value=''False'' ...
-
In the older Xceed.Grid (winforms controls) the Xceed.Grid.Cell class has a property named NullText that allows you to specify a text string to display when the data bound to the field is DbNull. This is useful for visually determining the difference between a null column value and an empty string. I'm looking for a bit of guidance for ...
-
HI,
I'm attempting to show/hide a column based on the checked state of a Combobox using:
Visible=''{Binding Path=IsChecked, ElementName=showSummaryHeaders}''
This generates the following binding error:
System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. ...
-
I followed both the CustomFiltering sample and your online documentation (http://doc.xceedsoft.com/products/XceedWpfDataGrid/Xceed.Wpf.DataGrid~Xceed.Wpf.DataGrid.AutoFilterControl.html) and found out that the filter doen't seem to work with non-static binding. For instance, I took the CustomFiltering sample and added my own very ...
-
Hello,
I want to manipulate a simple array with xCeed grid. Is this possible? I can view items, but editing and creating doesn't function.
public partial class Window1 : Window {public ObservableCollection<int> deneme { get; set; }
public Window1() {InitializeComponent();dummy = new ...
-
Thanks for your previous reply it worked. But, in one more scenerio I am facing a similiar problem. Let me give you a brief description of problem:-
1. I am using xceed grid having 4 columns and each column have combo box attached in xceed grid columns which I was earlier adding dynamically to grid at run time at code level. For 2.0 it works fine ...
-
just to help other people that could face the same issue:
i did the trick with a recursive inspection of the datagridcontexts, storing somewhere the information on every visible column's detail expansions and re-applying it after reloading. I also had to store current item's position to restore it as well
the use is ...
-
Here's my situation: I have a list of DataTables and they do not always have the same schema. I'm binding the currently selected item in the list to the grid and I'm auto generating the columns.
Everything is okay when the first DataTable is bound, but subsequent tables append their columns to the grid (and performance of the grid feels like it ...
-
first of all thank you for your answer, it has been really appreciated
my underlying datasource is a derivate of ObservableCollection
class PersonObservableCollection : ObservableCollection<DisplayRow>
(where DisplayRow is my object model class)
and ...
-
hello
i'm adding a new item to a datasource of a grid (bound via the datagridcollectionsource object), but i'm getting this weird behavior: the new item is displayed, but it's not properly nested in the detail rows, until i re-read the datasource and reassign it to the grid via code
where am I wrong?
thank you
1
|
|
|
|