Datatables - Two Tables On One Page?
Jul 31, 2010
My project is in Asp.Net Webforms using C#.
On one of my web pages, I want to have two tables. One is going to be a summary table and the other a more detailed breakdown of the summary. When the user clicks on one of the rows of the summary table, I want the corresponding breakdown rows to appear in the breakdown table.
These tables can have anything between 60 and about 500 rows.
I have thought of two possible ways of doing this and I'm not sure which is best, or if there is another, better way of implementing this:
1) When a user clicks on one of the rows in the first table, a postback event happens, and the data for the second table is loaded from the code behind.
2) When the webpage is loaded for the first time, both tables are filled with all of the possible data, but all of the rows in the second table have the "display: none;" CSS attribute. When a user clicks on a summary row, the CSS of the corresponding breakdown rows is changed using JavaScript.
View 4 Replies
Similar Messages:
Aug 2, 2010
I have two datatables with datavalues
datatable A
ID data1 data2 data 3
datatable b
ID data4 data5 data6
I would like to merge datatable A and datatable B like so the resultset is like this in tableC
ID data1 data2 data3 data4 data5 data6
When my code finishes the column names are in this format but the data from dt b is pushed down into new rows instead of added on as new columns.
i used merge method but it giving like the bellow
example:
ID data1 data2 data3 data4 data5 data6
1 X X X
2
3
4
5
1 X X X
2 X X X
3
4
5
View 2 Replies
Sep 27, 2010
I have 2 datatables and i would like to join these two tables based on same TemplateID in both the tables. How can i do it in c#.
View 3 Replies
Nov 25, 2010
I am trying to create a stock scanner which allows users to filter stocks based on multiple criteria that they select.
Like the following example with 2 criteria:
Criteria 1 Filtered Result: StockA, StockB, StockC, StockD
Criteria 2 Filtered Result: Stock B, Stock C, StockE, StockF
SCANNER RESULT: Stock B, StockC (ideally this result would be displayed in a GridView)
Now this seems like an easy task for a simple SQL JOIN statement, but the problem is that the SQL statements I've written for some criteria are already so complex that it's unthinkable to combine them further by using a SQL JOIN statement.......(yes I've tried and failed).
I think the only way to accomplish this is to put each criteria-filtered result into an array or datatable, and then try to query to see which stocks exist in all the arrays/datatable (in other words satisfy all criteria), and to display these stocks in a gridview. After doing some research online, it is possible to do query from multiple datatables by either using:
JOINVIEW(DataRelation) or LINQ
But which one is the best method (if it works)? I didn't consider using a loop for this since it would be too inefficient, especially if a user select many criteria.
View 2 Replies
Feb 11, 2010
but back in the days of Webforms you would return a Dataset which you would then bind to a grid. But now in MVC you're not supposed to pass a datatable because you cannot serialize it and it's technically passing objects into the View where it doesn't belong? But how on earth am I meant to display data on a view?! I can't use LINQ to SQL classes here since this is a pure in memory data structure.
Ideally I'd just like to able to have an object which I can iterate within the view.
I'm really at a bit of a loss I have read the article from the "Gu" and I can only surmise that I have to pass back a ViewData Object instead?? Am I going nuts here?
View 1 Replies
Jan 15, 2010
I am new to c#.net.i have a method where i pass parameters in a loop and for each parameter there are different rows returned .rows (which have data of different data types) from database.I want to store that data rows somewhere like arraylist. and use for furthue peocessing.Plz tell me how to do this. enter code here
/*ideally Get_ChildAndParentInfo(int pointid) function returns array list but how to deal with array list containing datarows with different data types */
public static ArrayList Get_ChildAndParentInfo(int PointID)
{
[code]...
View 2 Replies
Oct 27, 2010
I am trying to combine two datatables into single datatable... First table contains 3 columns[e.g: 'col1','col2','col3'] Second table contains 2 columns[e.g: 'col4','col5'] Both tables have the same no.of records[rows], but different columns. How to combine them into single table? I need DataTable with columns ['col1','col2','col3','col4','col5']. I am inserting through looping the both the tables and adding values into third table. I tried the Merge (DataTable.Merge()), but it is adding the records to bottom of first one, but i need it should be added to the side[as columns] to first table'
View 6 Replies
Jul 30, 2010
I need to compare 2 DataTables that do not necessarily have the same structure. One dataTable is the master (dtDB), the second dataTable (dtFORM) is what will have the changes, if any, but not necessarily all of the columns of dtDB. In both tables the first column will be the primary key and all columns that dtFORM has, dtDB will have.
There is another DataTable (dtResults) that will flag the differences
This is where I am at so far:
[Code]....
View 4 Replies
Aug 3, 2010
want to make relation between two datatable based on one column
this column is present in both datatables but name is diffrent and values are same
[Code]....
View 4 Replies
Feb 10, 2011
DataTable 1 :-
Caption |ID
------------
Caption1|1
Caption2|2
Caption3|3
DataTable 2 :-
Name |ID
------------
Name1|1
Name2|2
I want to compare the above two data tables and fetch the value "Caption3" so I can display a message on screen that "No name for "Caption3" exist!"
I have tried merging as follows but it's fetching DataTable 2 as it is in dtTemp !
datatable1.Merge( datatable2);
DataTable dtTemp = datatable2.GetChanges();
Also tried the logic as follows that removes rows with same IDs in both tables and updates datatable2's rows and only the ones that don't have duplicated IDs will remain...This didn't work either.
if (datatable2.Rows.Count != datatable1.Rows.Count)
{
if (datatable2.Rows.Count != 0)
{
for (int k = 0; k < datatable2.Rows.Count; k++)........
How do I fetch those "CAPTIONS" whose corresponding "NAMES" do not exist?
Note:- Rows in both datatables will vary based on some logic. What I want is to fetch that CAPTION from datatable1 who's KCID doesn't exist in datatable2.
edit:- How else do I loop through datatable1's rows and check which ID(from datatable1) doesn't exist in datatable2 and then print those captions on my page?
@CodeInChaos:: I have not worked with Linq-To-Objects at all so not able to understand your code :/
Is there any other way to loop through that datatable and fetch "caption " who's correcponding "Name" doesn't exist in the datatable2?
View 1 Replies
Feb 2, 2011
I have inherited an ASP.NET 3.5 application that relies heavily on sessions and storing DataTables within them (I know - bad, bad, bad). The application pool on the remote shared hosting service indicated that memory is at full capacity and as a result customers are losing their shopping carts because of dropped sessions.
Ultimately the goal is to rewrite this code, but for the time being I would like to stabilize the site the best I can. The host has recommended I use SQL Server Session State instead of in-proc. I have no experience with this, so I'm hoping it's as simple as running the .sql against the database to configure SQL Server and updating the web.config.
View 1 Replies
Jun 30, 2010
I have two datatables with same columns. I want to compare those two tables and I want to know whether data in those tables is same or different. If both Prod and Qty are same then I have to get true or else false.
That is
TblOne
Prod Qty
A 2
B 2
C 3
TblTwo
Prod Qty
A 1
B 2
C 2
As of now I am looping thoruh all the rows. Is that the only solution or is there any best way to do this ?
View 4 Replies
Mar 29, 2010
I have two DataTables, with Different Columns. Some of the Columns are same between them.
i am looking to do this.It is also refered to as MINUS and is simply all the rows that are in the First table but not the Second.
These three colums are same between the two tables.
string[] strCols = { "CustomerID", "CustomerName", "CustomerCity" };
I tried this but it seems to return all the Rows from the Table1.
[Code]....
View 2 Replies
Apr 1, 2011
I have 2 views in sql server and I create a dataset with those 2 views as datatables. Now I need to create a datatable and programmatically fill it with the other 2 datatables. Take the 2 datatable and create a third one in the dataset not create a third view in sql server.
View 2 Replies
Jun 23, 2010
The case is: I use a webservice that gives me information about companys. For example: I entered a companyname and the webservice give me a list of al company's in the country. The webservices return a one dimensional array. The problem is that I must search in two register so the webservices returns 2 array's. I put the data from both arrays into 2 datatables. The data in the 2 datatables can be different or the same.
The question is: How could I matching the data on ID and combine the data into 1 datatable.
The code:
//Create result
SearchResult Result1;
SearchResult resultZoekmogelijkheid2;
//send van Soap Request
[Code]....
View 7 Replies
Oct 18, 2010
I need to asynchronously retrieve several resultsets which I store in DataTables and add these DataTables to a DataSet. When the final DataTable is filled and added to the DataSet the page must then continue processing utilizing this DataSet I have figured out how to implement delegates to asynchronously retrieve my DataTables but I'm unclear how to add them to a DataSet in a thread-safe manner. How is this best accomplished? Before processing I know how many DataTables there will be, so what is the best way to track the progress of the asynchronous retrievals and allow the page to continue only after I have all of the data?
View 3 Replies
Nov 10, 2010
I am creating varying number of datatables depending on user submitted query. I want to dynamically create collapsible panels for each datatable.
<asp:panel id=pnltitle1>dt1.rows(first row)</asp:panel>
<asp:panel id=pnlcontent1>dt1.rows(remaining rows)</asp:panel>
<asp:panel id=pnltitle2>dt2.rows(first row)</asp:panel>
<asp:panel id=pnlcontent2>dt2.rows(remaining rows)</asp:panel>
<asp:panel id=pnltitle3>dt3.rows(first row)</asp:panel>
<asp:panel id=pnlcontent3>dt3.rows(remaining rows)</asp:panel>
View 1 Replies
Jul 9, 2010
I need to asynchronously retrieve several resultsets which I store in DataTables and add these DataTables to a DataSet. When the final DataTable is filled and added to the DataSet the page must then continue processing utilizing this DataSet I have figured out how to implement delegates to asynchronously retrieve my DataTables but I'm unclear how to add them to a DataSet in a thread-safe manner. How is this best accomplished? Before processing I know how many DataTables there will be, so what is the best way to track the progress of the asynchronous retrievals and allow the page to continue only after I have all of the data?
View 6 Replies
Jul 9, 2010
I have a DataTable which holds information on truck routes. When the user click on a route it display another table with details about the stop along that route. When they click a stop it shows what items were picked up at that stop. Three separate pages with 3 distinct DataTables. Currently I am storing them in the session. Normally, I would use the view state since the data only needs to live on that page. The reason I use the session is because each page is part of a Master pagelayout. There is an export button in the master page which gets the data in the session and exports it to an excel file. The issue is that when the user goes to the item level detail and uses a quick navigation link back to the route information the data for route is not reloaded into the session, just the page. If the user clicks export it will export the data set from the item level detail even though it is not displayed on the page
View 4 Replies
Jan 4, 2011
I have an C# ASP application I am writing that needs to have the capability to import a generated excel or a comma delineated sheet each day. A clerk will have this job each morning so it doesn't need to be automated. My problem in trying to understand the solution to this is that the 1 sheet contains loan information, including customer information all in the same sheet. I would like to send certain columns to update information in the loan table and send other information to update the customer table. I need it to create relationships when new loans appear in the spreadsheet.
View 1 Replies
Jun 18, 2010
I am using C# ASP .NET MVC and ajax calls. I am able to get the display of the table along with all features. But, I don't understand how do I add a checkbox and button. I have tried dom-checkbox as well but can't get it to work.
My code looks like this:
$(document).ready(function () {
$('#personTable').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "/Home/GetCustomData",
"aoColumns": [
{ "sSortDataType": "dom-checkbox", "sTitle": "Select",
sName": "" },
{ "sName": "ID", "sTitle": "ID" },
{ "sName": "FirstName", "sTitle": "First Name" },
{ "sName": "Email", "sTitle": "Email"}]
});
});
My Html is :
[table border="1" id="personTable" class="display"]
[/table]
View 1 Replies
Aug 20, 2010
jQuery DataTables server-side processing using ASP.NET WebForms.
Solution:
Darin Dimitrov answered the question using an example which pages and sorts, but doesn't do any searching.
Here's my basic modification of his work to make searching work on his example:
[code]....
View 5 Replies
Nov 23, 2010
For a reporting stored procedure that returns multiple result sets that don't map to
any database tables, I'm able to use SqlConnection(), fill a DataSet, and name the
different tables uniquely (as opposed to the default Table, Table1, Table2).
However, I want to make the returned DataTables to be strongly typed.
There's plenty of articles out there about strongly typed DataSets, etc.,
View 2 Replies
Jul 30, 2010
I have one ASP.Net web page dynamically loading any one of about twenty User Controls at a given time. Since each user control is somewhat different, I've implemented the following extension to me pass a variable number of parameters to custom user control constructors: [URL]It, by the way, works very well! However, I've now come across the fact that both the web page and the user controls will need to share a few Data Tables. In other words, both the web page and the user control will need to access and manipulate data in these data tables.
To implement this fact I've used the Session object to store each data table. Each of these data tables starts out empty and then starts growing as the user enters more data into the user controls. The initialization of the data tables has to be done in the web page for a series of technical reasons that I won't get into here but rest assured that it does have to occur there.
But I found that in order to ENSURE that the initialization was taking place, it was simplest to just pass a reference to each data table as an extra parameter in the LoadUserControl call. This does work but it seems like overkill to me because on the user control constructor side, nothing is actually done with the data tables at the time of instantiation of the user control.
This made me go back to basics, thinking, "Why include a parameter if you're not actually going to use it?" But yet, it does seem to be the most straightforward way to ensure the data table is initialized and stored in the Session object.
View 3 Replies
Apr 30, 2013
if i want to get multiple values from database and pass this dataset to another page can we use session to store the dataset values..i knw we can..but some one says that its not a gud approach..this will cause server process down..is it true?if it so then wat are all the other ways to do that?
View 1 Replies