Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
46 views

I have a DataTable read from a csv file: ID,ItemCode,ItemDescription 1,Test0,test item 2,Test2,second test item When I try to create an additional column as in https://learn.microsoft.com/en-us/...
NeartCarp's user avatar
  • 229
1 vote
3 answers
164 views

I'm working on a C# application where I need to read a very large text file and convert its contents into a DataTable. However, I don't always need all the rows—so I want to avoid loading the entire ...
Mohammad's user avatar
1 vote
1 answer
42 views

Describe the bug: In my attached code I have a parent table with multiple rows (rows are expandable) when I expand it and try to select a sub-row, it doesn't get selected, Note: both parent table and ...
theunknownxD's user avatar
2 votes
0 answers
92 views

I have encountered a problem with the DataTable component from the Primevue library. When I assign pagination to a table and set several frozen columns, if I switch the number of rows displayed in the ...
DZN's user avatar
  • 1,658
0 votes
0 answers
41 views

I'm using PrimeVue DataTable with a MultiSelect filter on the "Project Status" column. I want to pre-select certain status values by default, but only those that actually exist in my data. ...
Win's user avatar
  • 1
0 votes
1 answer
44 views

I’m building a Svelte 4 app with Routify for routing and carbon-components-svelte for UI. I have a Pagination component that should read the current page from the URL query params ($params.page) and ...
Shailesh B's user avatar
0 votes
2 answers
168 views

I have below code, library(data.table) library(dplyr) Number = 10 iSimu = 1 dat = as.data.table(matrix(0, nr = 1, nc = Number)) while (iSimu <= 500000) { ...
Bogaso's user avatar
  • 3,896
0 votes
1 answer
85 views

I have some sort of undo functionality in my application. I remove a row from the GUI an could undo or commit it through the underlaying DataTable-functions RejectChanges or AcceptChanges. But when I ...
Me3nTaL's user avatar
  • 505
0 votes
0 answers
48 views

I'm attempting to pass paginated results from a Web API to an MVC application and displaying in the View using DataTable. While I've successfully retrieved the data from the server and transmitted it ...
Srca Maint's user avatar
1 vote
0 answers
130 views

I have a PrimeReact DataTable with multiple columns. Each column has a text header, optionally with sort and filter options. Alignment of the columns can differ, and I would like the alignment of the ...
Patrick Losser's user avatar
0 votes
2 answers
580 views

My app allows the user to choose what table and columns to filter on. It can be a different table and columns each time the user runs this routine. So standard LINQ will not work. I need to do this ...
G Bradley MacDonald's user avatar
0 votes
1 answer
65 views

How do I convert string "false" and "true" to numeric 0 and 1 within Grafana? I need to do this to then summarize a row or a column and get a count of trues. I tried using "...
BasedGod's user avatar
0 votes
1 answer
103 views

I am trying to freeze the first four columns of this datatable when a user is scrolling it horizontally. But the style "dtfc-has-left" style="position: relative;"" is not ...
hju's user avatar
  • 33
0 votes
1 answer
131 views

I'm building a service that would receive a .xlsx, .csv or .xls file through form-data, and I need to read the file columns (should be just 3 columns) and bulk copy the data into my SQL Server ...
Mateus Xavier's user avatar
0 votes
1 answer
61 views

I am having problems with reinitializing my datatable in react. Below is an example that I have compiled for everyone to replicate the problem immediately. Currently, I am trying to let user to select ...
Chuah Sze Wei's user avatar
1 vote
1 answer
110 views

Here is a script in which I am trying to pass a variable of type System.Data.DataTable via invoke-command to the remote host: function Test1 { param ( [System.Data.DataTable] $...
Vladimir1211's user avatar
0 votes
0 answers
88 views

I'm trying to implement both column resizing and fixed columns in a jQuery DataTable. I'm using the ColResize plugin, which works fine for column resizing. However, when I enable fixed columns, the ...
Afrose ahamed's user avatar
0 votes
0 answers
46 views

I have implemented jQuery DataTables on a Visualforce page and am currently using the FixedHeader and FixedColumns extensions. Now, I’m trying to implement column resizing functionality, but I am ...
Afrose ahamed's user avatar
1 vote
1 answer
96 views

I created a table ("DataGrid") using: ui.output_data_frame("grid") which I filled using @render.data_frame def grid(): df = ... return render.DataGrid(df, ...
lambruscoAcido's user avatar
0 votes
1 answer
59 views

I'm using DataTables with pagination and checkboxes to allow users to select multiple banners. Upon clicking "Generate Proposal", I collect all checked rows, generate HTML, and convert it to ...
Abhisake Jain's user avatar
0 votes
1 answer
83 views

I have a datatable in Razor Project with rows containing id, name, title, parent, and other fields. I need to bind a JavaScript array dynamically, but I tried this code and got an error. Please help. ...
test testb's user avatar
1 vote
1 answer
55 views

I have a table in which a new record is added about once a second. The ID is missing from the table. The "Time" column shows the time in milliseconds, which is reset at the end of the day. ...
Alexandr X's user avatar
0 votes
0 answers
46 views

My question: I have a rather large dataset in R Shiny and want to give the user the possibility to filter out single rows. As my problem was not clear before, I explain it a little more: Filtering out ...
panuffel's user avatar
  • 704
0 votes
0 answers
72 views

I´m trying to fill a datatable with some information. The information is the result of a query. here my code that not working: TrinoConnectionProperties properties = new TrinoConnectionProperties() `...
Nelson Soares's user avatar
0 votes
1 answer
69 views

I have the following data frame I need to sort in a specific way. D1 and C1 are linked together D2 and C2 are linked together, D3 and C3 are linked together. I need columns D1, D2 and D3 to contain ...
szmple's user avatar
  • 487
0 votes
1 answer
50 views

In C# I have a DataTable that has been modified several times, where some rows are deleted, some rows are updated, some rows remain the same. DataTable detailsTable = GetDdetails(); Insert code that ...
concentriq's user avatar
0 votes
1 answer
143 views

If you face issue while copying data from source Azure Storage table to SQL, where you see few columns are missing, this can be resolved by giving the first row with dummy values rather than they ...
Shiva kumar's user avatar
2 votes
1 answer
96 views

I am getting an output from a DataTable for certain columns that have been defined in a string array: string[] columnsToBeUnique; var ordered = dataTable1 .AsEnumerable() ...
Rico Strydom's user avatar
0 votes
2 answers
78 views

I want to perform a select distinct on a DataTable using Columns that are stored in string array: string[] columnsToBeUnique. This is what I have at the moment but it doesn't return any values... ...
Rico Strydom's user avatar
1 vote
0 answers
59 views

I'm getting this error when my code runs and I can't work out why as the syntax looks on point but I could be missing or misunderstanding something System.Data.SyntaxErrorException: 'Syntax error: ...
stonypaul's user avatar
  • 705
-1 votes
3 answers
105 views

I want to get the sum of only two columns for each data row in datable and display it in datagridView. I tried to use link query: SqlCommand cmd = new SqlCommand("SELECT * FROM Student", con)...
user3309231's user avatar
0 votes
0 answers
19 views

I have working DataTable that works well with ContextMenu when DataTable is in single row select mode. When selectionMode="multiple", however, a right click on one of the selected rows ...
Norm Strassner's user avatar
0 votes
1 answer
81 views

I have used the VBA JSON library (https://github.com/VBA-tools/VBA-JSON/releases) to attempt to parse a json file into an access table. The code I use is: Private Function JSONImport() Dim db As ...
5uperBonbon's user avatar
-1 votes
1 answer
451 views

how to wrap lwc lightning datatable header text, i'm already using wrapText: true, for table sorting its workig for table data but not for table header <lightning-datatable data={pagedRecords} ...
Shiva Sahani's user avatar
0 votes
1 answer
96 views

I created a datatable that filters on each column. Everything was fine until I updated my code trying to reset all filters. Here's my code: $('.dt-column-search thead tr:eq(1) th').each(...
cussaxx's user avatar
  • 11
0 votes
0 answers
91 views

I am using the Flutter DataTable2 to display one set of data. However, would like to know if I can add additional rows to display a second set of data on clicking a row. This is like the Expansion ...
gputhige's user avatar
  • 139
0 votes
0 answers
106 views

I am working on a Vue 3 project with Vuetify 3. In a datatable, I want to add the possibility to filter multiple columns that can be of multiple data types (text, int, datetime). I have tried to ...
EpicBanana's user avatar
2 votes
1 answer
122 views

Im using Jquery data table im using 3 fixedColumn when i press shift+tab from end row its navigating each cell but some cell are not focusable its showing half field which difficult identify which ...
Afrose ahamed's user avatar
0 votes
0 answers
32 views

I am trying query few Historian tags data from Proficy Historian using OleDbDataAdapter. The code pulls the data right from the historian but when I am trying to merge the data in a common Data table, ...
AJoshi's user avatar
  • 1
0 votes
0 answers
54 views

The value defined by c:set refers to a var (name of the iterator variable used to refer each data), but the column values are not displayed. How should it be defined to be displayed correctly? <c:...
Andrew Churchill's user avatar
0 votes
1 answer
91 views

I'm using a dynamic linq on the DataTable to generate consolidated summations. All everything works great except when a value is null for Column9 used for summation. I got NullException ''Object ...
JKANNAN's user avatar
  • 83
0 votes
1 answer
111 views

I have a SQL Server table with CREATE TABLE date_table ( id int NOT NULL, my_date date NULL ); And I'm fetching data into the table from a DataTable in C# with a standard call to Fill like ...
Yndigo Dream's user avatar
0 votes
0 answers
57 views

I have got two data frames "Table 1" and "Table 2". Features of the data frame "Table 2" are the following: It is created by means of rhandsontable and, hence, new rows ...
firuz.safaev's user avatar
0 votes
1 answer
55 views

I have a data table with the following columns. dataTable.Columns.Add("ID", typeof(string)); dataTable.Columns.Add("File Name", typeof(string)); dataTable.Columns.Add(&...
PCG's user avatar
  • 2,311
0 votes
1 answer
64 views

Problem description I’m using the react-data-table-component-with-filter library to implement a table with column filters. However, when I type in the filter input of any column typing an existing ...
Gilillo's user avatar
  • 11
1 vote
1 answer
91 views

Sorry if this is answered elsewhere, I've searched all over and can't find an answer. I think my scenario is pretty simple. I have a DataGridView who's DataSource is set to a DataTable. I handle the ...
Dan's user avatar
  • 159
0 votes
3 answers
95 views

I'm working on an ASP.NET Core 8.0 MVC project where I'm using DataTables to display data with server-side processing via Ajax requests. I have implemented a custom middleware to check if the user is ...
TheSun's user avatar
  • 21
0 votes
1 answer
45 views

I am trying to join to tables together in vb.Net using linq to return the distinct count of the primary keys, and I can't quite seem to get the syntax Here's the code to create the tables Dim ...
josmond's user avatar
  • 17
0 votes
1 answer
65 views

I have the following code: myDataSet.myTable.DefaultView.RowFilter = "Code <> 'X'" After the line executes, I can see the updated result where no rows contain an X for the Code column,...
Rich's user avatar
  • 6,585
0 votes
0 answers
25 views

<table class="table datatable-basic table-bordered" id="mviewTable"> <thead> <tr class="bg-blue-800"> ...
Sujit's user avatar
  • 1

1
2 3 4 5
442