RB
Ragamathulla B
Syncfusion Team
January 27, 2012 10:13 AM UTC
Hi Josef,
Thank you for your interest in syncfusion products.
We will update you with the respective details for your reported queries, in the incident 90076. Please refer the incident 90076 for follow up. also We suggest you to logon your Direct trac account with your username and password to view your incidents.
Let me know if you have any concern.
Regards,
Ragamathullah B
JB
Josef Böhm
January 30, 2012 02:28 PM UTC
Info: BindingList
is bind as DataSource to gridDataBoundGrid.
I became an answer from the developer team:
To achieve the reported behavior you need to set the custom data object by using the “SetData “ method through “QueryOleDataSourceData “. Please refer the following code.
gridDataBoundGrid.Model.QueryOleDataSourceData += new GridQueryOleDataSourceDataEventHandler(Model_QueryOleDataSourceData);
void Model_QueryOleDataSourceData(object sender, GridQueryOleDataSourceDataEventArgs e)
{
e.DataObject.SetData(typeof(ProductDataObject), e.DataObject.GetData(typeof(ProductDataObject)) as ProductDataObject);
e.Handled = true;
e.Result = true;
}
RB
Ragamathulla B
Syncfusion Team
January 31, 2012 04:24 AM UTC
Hi Josef,
Thanks for the update.
Let me know if you have any further concerns.
Regards,
Ragamathullah B.