Skip to main content
Filter by
Sorted by
Tagged with
1 vote
3 answers
160 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
2 votes
0 answers
76 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
1 answer
43 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
1 answer
81 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
1 vote
0 answers
118 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
1 answer
56 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
118 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
1 vote
1 answer
108 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
41 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
0 votes
1 answer
53 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
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
69 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
45 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
2 votes
1 answer
95 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
1 vote
0 answers
57 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
0 votes
0 answers
16 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
-1 votes
1 answer
405 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
0 answers
90 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
2 votes
1 answer
117 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
49 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
104 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
1 answer
53 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
1 vote
1 answer
84 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
1 answer
39 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
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