Hi,
I have an infragistics grid on a screen in lightswitch. One of the columns is a button control. When the user clicks the button control I want the method to gather the following information from the row where the button is clicked:
Cell value for Column(0) of the row (autocompletebox)
Cell value for Column(1) of the row (textbox)
Is there any way to achieve this?
Regards,
Alan
Hello Alan,
Within the Button control to access the fields of the record that was clicked on you can bind from Details.Entity. E.g.:
<Button Content="{Binding Details.Entity.ProductName}" />
I have attached a sample that uses the Product table from the Northwind database.