The term "datatable" is ambiguous. In .NET, it's a class that represents a table of in-memory data. In component based MVC frameworks like JSF and Wicket, it's an UI component that dynamically renders a HTML table based on a collection. For jQuery DataTables plugin, please use [datatables] tag.
1
vote
1answer
44 views
Best method to store a large number of constants C#
Fairly new to c#, I have a datatable with 250 rows, one of the columns will be populated with constant values (these values are strings). What is the best way to store these constants? Any reference ...
0
votes
0answers
5 views
Use rowTemplate from CogShift (Knockout extension) to bind a datatable
I'm trying to use CogShift, an extension of Knockout to work with datatable.
I found an example in a related Stack Overflow question, which perform exactly what I need, however it has a bug (in my ...
1
vote
4answers
28 views
Contiously adding to datatable
I have the code below that goes out to a database using OleDB and fills a dataset with the information. It then checks to make sure it has something in the dataset, if it does it then addes that ...
0
votes
0answers
10 views
display the value of a foreign key with primefaces
I have the following datatable which contains a list of pictures. I want to display for ech picture the user who uploaded it.so the user is a foreign key in table picture which is ...
0
votes
2answers
19 views
Please Help: Need Faster Solution that Loops Through Two DataTables Quickly and Efficiently?
I have two data tables dt1 and dt2 that I need to loop through and compare two columns of dt1 to the same two columns of dt2. I'm a beginner with Linq but not sure using Linq will be faster?
Each ...
0
votes
0answers
5 views
Populating a GridView table in VS2012 as webpart with SPList Only Title column has value
I am trying to populate a gridview table with a list from a SP2010 website as a webpart to be used on a different SP site. So far the code I have is:
SPSite mySite = new SPSite("Sharepoint list ...
0
votes
2answers
29 views
How to use binding sources to bind across multiple data tables?
Firstly, I would like to say I have searched the internet extensively and have not found anything on this topic.
My situation is that I have a junction table table in a SQL database (A table that ...
0
votes
2answers
44 views
How to “design” DataTables?
I have an undefined amount of DataTables. I get them from my database, each DataTable stands for one Table in my database, I dont use all Tables of the database just the few I need (these were ...
0
votes
1answer
14 views
How to select second page as initial page with jQuery datatable
I am using jQuery datatable.By default it is showing first page as initial page .But i want to show the second page as default page.When i am using YUI data table .In that i have option like ...
0
votes
1answer
9 views
GridView without data won't show columns
i can't seem to get the columns to show up on the page. I want to show the gridview with the columns, but without any data. How can i do that?
**Presenter.cs**
public DataTable ...
1
vote
1answer
12 views
Set Data table to contain nodes of xml like data member of data grid VB.net
I have an XML document that looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="CoreNLP-to-HTML.xsl" type="text/xsl"?>
<root>
<document>
...
2
votes
1answer
46 views
filter a datatable to contain unique columns
I have a datatable as follows
ID(INT NOT NULL AND PK) Name(NOT NULL NVARCHAR)
1 Apple
2 Apple
3 Apple
4 ...
0
votes
0answers
16 views
DataTable JQuery RowGrouping Get Rid of the Empty Group Cell
I need some help. I am adding rowGrouping but when the grid is rendered, I get an empty group label, which is labeled "-". I think it has to do with how my asp.net gridview is marked up. Originally, ...
0
votes
0answers
37 views
Export DataTable to excel in C#
I need to export the DataTable. If the DataColumn contains "<" means, exported excel column value will be empty .
I Added :
Response.ContentEncoding = System.Text.Encoding.UTF8;
Still same ...
0
votes
0answers
12 views
Adding a function Import in Entity Framework for a User Defined Table Tyle Stored procedure
I have created a stored procedure expecting a User Defined Table Type as Parameter.
As I want to use the stored procedure to be called via the Entity Framework I need to do a function Import.
But ...