i'm using grid control in DevExpress reports when i set data source dynamically to my grid control its not showing a output, anyone please help me to get.
this is my code
DataTable dtJobOrder = new DataTable();
string DTQuery = @"Select Product from JobOrder";
dtJobOrder = Generic.GetDataTable(DTQuery);
grdspare.DataSource = dtJobOrder;