Browse by Tags
All Tags » DataBinding (RSS)
Showing page 1 of 3 (30 total posts)
-
Hi there, sorry for the length of this post, this is a particularly tricky
problem to explain
I've been evaluating the Xceed grid and have been very impressed to date,
but I fear I may have uncovered a bug.
To set the scenario, I have an application that uses a control app to spawn
multiple windows, each with a dedicated UI ...
-
I can't seem to get this converter to work 100%. It doesn't appear to support all of the mask options and the documentation simply points to the MaskedTextProvider Class.
For example if I set the mask (ConverterParameter) to ''999,990.00'' and the value is ''10.99'' what's displayed is ''000,010.99''. If the value is null I get ...
-
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'' ...
-
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 ...
-
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
|
|
|
|