473,545 Members | 2,001 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Load data into grid

3 New Member
I'm having huge problems loading data into a grid. i've encountered a number of problems, which i´ve been solving through different approachs, and now i dont have any exception, but i still cant load the data into the grid.

The data is filtered according to "rdpInvestigado r" external selectedValue, and should load in the grid accordingly.

I use a n-layer architecture and ASP ObjectDataSourc e to Bind DB.

I will put the main parts of the code, in order to be possible to understand and find the issue. I will also attach an image with the appearence of the system, and a sample code containing a more complete file, but still imcomplete because i'm working on a larger application that i cant replicate on my machine.

I believe the problem is on CS code, but it could also be on the BLL "GetList" method. Can you identify where the problem is?

//HTML

Expand|Select|Wrap|Line Numbers
  1. <script type="text/javascript">
  2.   function refreshGrid(arg) {
  3.   var radManager = $find('<%= 
  4.   RadAjaxManager.GetCurrent(Page).ClientID %>');
  5.   if (!arg) {
  6.    radManager.ajaxRequest("Rebind");
  7.   }
  8.     else {
  9.    radManager.ajaxRequest(arg);
  10.             }
  11.    }
  12.  
  13. function myUserControlClickHandler() {
  14. $find("<%= RadAjaxManager.GetCurrent(Page).ClientID %>").ajaxRequest("FromUserControl");                       }
  15.  </script>
  16.  
  17. <telerik:RadComboBox ID="rdpInvestigador" </telerik:RadComboBox>
  18.  
  19. <telerik:RadButton ID="ButtonPerformSearch" Text="Aceder à listagem de timesheets" ValidationGroup="search" OnClick="ButtonPerformSearch_Click"
  20.                     runat="server"  CssClass="btn btn-mini"  Width="50%" ButtonType="ToggleButton"
  21.                    CausesValidation="true"></telerik:RadButton>
  22.  <asp:LinkButton ID="lkbPesquisar" runat="server" CssClass="btn btn-mini" OnClick="lkbPesquisar_Click">pesquisar</asp:LinkButton>
  23.  
  24. <telerik:RadGrid ID="gvTimesheets" DataSourceID="DataSourceTimesheets" OnSelectedIndexChanged="rdpInvestigador_SelectedIndexChanged" OnItemCommand="gvTimesheets_ItemCommand"
  25.  
  26. <asp:ObjectDataSource ID="DataSourceTimesheets" runat="server" EnablePaging="True" OnSelecting="DataSourceTimesheets_Selecting" SortParameterName="sortType" TypeName="UMinho.GestaoProjectos.BLL.BLLListagemTimesheets" 
  27.                    SelectMethod="GetList" SelectCountMethod="GetListCount">           
  28.                     <SelectParameters>
  29.                          <asp:ControlParameter ControlID="rdpInvestigador" Name="IDRecursoHumano" PropertyName="SelectedValue" DefaultValue="" Type="Int32" />
  30.                          <asp:Parameter  Name="ID"  Type="Int32" />
  31.                         <asp:Parameter  Name="DataEnvio"  Type="datetime"  />
  32.                          <asp:Parameter  Name="IDEstadoTimesheet"  Type="Int32" />                        
  33.                          <asp:Parameter  Name="AssinaturaTimesheet"  Type="string" />                     
  34.                           <asp:Parameter  Name="Observações"  Type="string" />
  35.                           <asp:Parameter  Name="Ficheiro"  Type="string" />
  36.                           <asp:Parameter  Name="FileTipo"  Type="string" />
  37.                          <asp:Parameter  Name="FileContent" Type="Byte"   />
  38.                         <asp:Parameter Name="login" Type="String" />
  39.                     </SelectParameters>
  40.                 </asp:ObjectDataSource>
//BLL method, used in object data source (wanted data that not load is "listagem timesheet"

Expand|Select|Wrap|Line Numbers
  1.  public List<ListagemTimesheet> GetList(int? ID, int? IDRecursoHumano, DateTime? DataEnvio, string AssinaturaTimesheet,int? IDEstadoTimesheet, string Observações, string Ficheiro, string FileTipo, byte FileContent, string sortType, int maximumRows, int startRowIndex, string login)
  2.     {
  3.         using (GestaoProjectosEntities db = new GestaoProjectosEntities())
  4.         {
  5.             var entities = from e in db.ListagemTimesheets
  6.                            select e;
  7.  
  8.             entities = GetQueryList(entities, ID, IDRecursoHumano, DataEnvio, AssinaturaTimesheet, IDEstadoTimesheet, Observações, Ficheiro, FileTipo, FileContent, login); 
  9.  
  10.             entities = GetListSort(entities.AsQueryable(), sortType); 
  11.  
  12.             entities.Skip(startRowIndex).Take(maximumRows);
  13.  
  14.             return entities.ToList();
  15.         }
  16.     }
  17.  
  18.          public int GetListCount(int? ID, int? IDRecursoHumano, DateTime? DataEnvio, string AssinaturaTimesheet,int? IDEstadoTimesheet, string Observações, string Ficheiro, string FileTipo, byte FileContent, string login)
  19.          {
  20.              using (GestaoProjectosEntities db = new GestaoProjectosEntities())
  21.              {
  22.                  var entities = from e in db.ListagemTimesheets
  23.                                 select e;
  24.  
  25.                  return GetQueryList(entities, ID, IDRecursoHumano, DataEnvio, AssinaturaTimesheet, IDEstadoTimesheet, Observações, Ficheiro, FileTipo, FileContent, login).Count();
  26.              }
  27.          }
// Cs class, with 3 approachs: 1-FormsMode; 2-OnSelectedIndex (); 3-DataBind()

Expand|Select|Wrap|Line Numbers
  1. public Utils.FormMode FormMode
  2.     {
  3.         get { return ViewState["___formmode"] == null ? Utils.FormMode.CreateMode : (Utils.FormMode)ViewState["___formmode"]; }
  4.  
  5.         set { ViewState["___formmode"] = value; }
  6.     }
  7.     //ID
  8.     public int ID
  9.     {
  10.         get { return ViewState["___entitypk"] == null ? 0 : (int)ViewState["___entitypk"]; }
  11.  
  12.         set { ViewState["___entitypk"] = value; }
  13.     }
  14.  
  15.     BLLListagemTimesheets listagembll = new BLLListagemTimesheets();
  16.     BLLPesquisarTimesheet pesquisarbll = new BLLPesquisarTimesheet();
  17.     BLLTemplateFile templatebll = new BLLTemplateFile();
  18.  
  19.     protected void Page_Load(object sender, EventArgs e)
  20.     {
  21.         //Get reference to AjaxManager (from Master) 
  22.         var manager = RadAjaxManager.GetCurrent(Page);
  23.  
  24.         //Create a new delegate to handle the AjaxRequest event 
  25.         //manager.AjaxRequest += new RadAjaxControl.AjaxRequestDelegate(RadAjaxManager1_AjaxRequest);
  26.  
  27.         //Add your ajax settings programmatically (with ref to Master manager) 
  28.         manager.AjaxSettings.AddAjaxSetting(manager, gvTimesheets);
  29.  
  30.         if (Request.QueryString["ID"] != null)
  31.         {
  32.             if (Request.QueryString["action"] != "TemplateFileDownload")
  33.                 DownloadFile(Convert.ToInt32(Request.QueryString["ID"]));
  34.             else
  35.                 ExportFile_Click();
  36.         }
  37.  
  38.         else
  39.         {
  40.             if (!Page.IsPostBack)
  41.             {
  42.                 RecursoHumano rh = new RecursoHumano();
  43.  
  44.                 rdpUnidade.DataValueField = "ID";
  45.                 rdpUnidade.DataTextField = "NomeUnidade";
  46.                 rdpUnidade.DataSource = new BLLUnidades().GetAllCentrosInvestigacao();
  47.                 rdpUnidade.DataBind();
  48.                 //rdpUnidade.ClearSelection();
  49.  
  50.                 // Sem filtros (Nao consigo utilizar o AjaxManager!) // new BLLProjectoEquipa().GetAll()
  51.                 rdpInvestigador.DataSource = new BLLRecursoHumano().GetAll();
  52.                 rdpInvestigador.DataValueField = "ID";
  53.                 rdpInvestigador.DataTextField = "Nome";
  54.                 rdpInvestigador.DataBind();
  55.                 rdpInvestigador.Items.Insert(0, new RadComboBoxItem("", ""));
  56.  
  57.  
  58.             }
  59.         }
  60.       //2 approaches, 1st one
  61.  
  62.       protected void ButtonPerformSearch_Click(object sender, EventArgs e)
  63.     {
  64.         gvTimesheets.Rebind();
  65.     }
  66.  
  67.     protected void rdpInvestigador_SelectedIndexChanged(object sender, EventArgs e)
  68.     {
  69.         gvTimesheets.DataSource = rdpInvestigador.SelectedValue;
  70.         gvTimesheets.Rebind();
  71.     }  
  72.       //Second
  73.  
  74.      protected void lkbPesquisar_Click(object sender, EventArgs e)
  75.     {
  76.         BindInvestigadores();
  77.     }
  78.  
  79.      private void BindInvestigadores() // gvTimesheets.DataBind(); nao dá exception mas nao carrega
  80.     {
  81.  
  82.         gvTimesheets.DataBind();
  83.     }
After many tries, cant get any ideia of the problem
Oct 20 '21 #1
0 5867

Sign in to post your reply or Sign up for a free account.

Similar topics

3
4070
by: Snake | last post by:
I have a vb .net program which fills a data grid upon form load from an acccess database. This works great. Now, I have to add a combo box and use it to alter the underlying sql statement and re-fill the data grid. I have never done this before, but I created a new sql statement in strSql from the combobox, update the data adapter, and try...
1
1570
by: atif | last post by:
i m using webmatrix n i hav a prob with editable data grid. i hav set the data grid with to 100% when i load the page the data grid fits into the screen 100%. but when i clicked on add new or on update that a horizontal scroll bar used to appear n i m unable to read all the records i hav to scroll till to the end. Plz help me out Posted...
6
6680
by: Tejpal Garhwal | last post by:
I have datagrid filled with some data rows. At the run time i want know how many total rows are there in the data grid ? Any idea ? Any Suggestions ? Thanks in advance Tej
0
4152
by: Gian Paolo | last post by:
this is something really i can't find a reason. I have a form with a tabcontrol with tree pages, in the second page there is a Data GRid View. Plus i have a class. When i open the form i "inizialize" the Data Grid View (add a data sorce, filled with notthing at staratup, and hide some columns) when i put a code in the txtCLCOD textbox start a...
2
3120
by: jvdub22 | last post by:
I am currently using a VB 6 MS Data Grid Control bound to an SQL express data base. My grid has 20 visible rows when I load my form, when I scroll down and select a row higher than 20 the grid refers back to the corresponding row in the original 1-20. For example I can select any row less than 20 just fine, but if I select row 22 the grid will...
0
1220
by: sumaira_it | last post by:
Hi I am building window forms application. i have made a design time data grid. I populated the data grid on form load by fill method of adapter (Where Column1 = 1). I want that when i click on update button the changes made to the data grid should save in the table. I am a beginner. Please help me in this regard,
0
1174
by: Rasika WIJAYARATNE | last post by:
Hi everyone, I have two grid-views and I am trying to populate the data on gv2 based on the selection in gv1. However when a row is selected in gv1, it doesn't populate the gv2 with data. I have ensured that the ObjectDataSource (ods2) for gv2 works and load data correctly by specifying hardcoded primary key value within a Paramater. ...
0
1149
by: newsaboutgod | last post by:
I am loading a dataset from a XML file. I want to allow the user to display data from the dataset in a grid. Depending on which button they click i want to load the grid with a subset of data from the dataset. So, once I load the dataset from the XML file, how would I load the grid with only the data from the dataset that had "smith" in...
3
14765
by: vibhakhushi | last post by:
Hi, I'm trying to load data to my grid panel which resides in php using JsonStore object. But the problem is JsonStore is not getting data from php only. Can anyone tell me where i've gone wrong. Is my php file is proper or not? I'm very new to both php and extjs. please help me out. i'm uploading the both .js and .php files. please help me out....
0
7411
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
1
7439
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7773
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
5987
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5343
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
4962
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3450
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1901
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
722
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.