Hi,
Here i am using xamgrid to take data from the user.
In that my first coumn should have comboBoxes from which user can select the item. How to place
comboBox within first column cell.
Please give me some suggestions.
also if the user clicks add button means it have to provide new row with again combobox in the first coumn
retaining old row.
Thank You!!!
Hello,
To have a XamComboEdit, you have to set the EditorStyle of that field like this:
<igDP:Field Name="State" Label="Status">
<igDP:Field.Settings>
<igDP:FieldSettings EditorStyle="{StaticResource StatusFieldStyle}" />
</igDP:Field.Settings>
</igDP:Field>
...
<Style x:Key="StatusFieldStyle" TargetType="{x:Type igEditors:XamComboEditor}">
<Setter Property="ItemsProvider" Value="{StaticResource StatusItemsProvider}" />
</Style>
You can see an example of this in the XamFeatureBrowser, which is installed together with the components.
For your second requirement - adding new row, you have to add in the DataSource a new object of your underlying class (if you bind to a Collection) or a new DataRow in your table (if you bind to a DataTable).
Hope this helps,
Alex.
I have already crated comboboxesw in the first column.And it is binding to xmldata also.I can also select the
items in the combobox.
But it is not updating to the xml file.
I have given the code...
DataRecord
data = xamDataGrid1.ActiveRecord as DataRecord;
string rolename = data.Cells["RoleName"].Value.ToString();
Here RoleName is field name containg comboboxes..
How to update combobox contents to the xml file...
Thank You!
Well,
in this case you can use the Infragistics.Windows.Utilities.GetDescendantFromType() method and give as parameters the CellValuePresenter, typeof(XamComboEditor),false to get the XamComboEditor and get the SelectedValue property.
However, we recommend using the EditorType as my previous post:
This way, you will be able to get the Value of that cell.
Let me know if you have any questions on this:
Here is a sample code snippet:
First you have to get the desired CellValuePresenter and then use this as parent object of that method.
CellValuePresenter cvp = CellValuePresenter.FromCell(xamDataGrid1.ActiveCell);
var a = Infragistics.Windows.Utilities.GetDescendantFromType(cvp, typeof(XamTextEditor), false);
MessageBox.Show(a.ToString());
Thank You Alex....It worked me...:)
Hi Alex,
I want to access the summary result in my code to validate the input from the user.
How to access the summary result i.e., sum value in my case.
And also my grid contains multiple rows.
Can u suggest some code.
Thank You!!!!!!!
You can use SummaryResultChanged event and access the summary results like this:
xamDataPresenter1.FieldLayouts[0].SummaryDefinitions...
I have to get the sum value of third field , in order to check user inputs.
How to access suggest me..
Thank You!!