Questions tagged [datatable]
An HTML table that is defined by iterating over a set of data, displaying information about one item of data per row.
298 questions
0 votes
0 answers
55 views
Inline editing box is not opening sometimes, it's varying from screen size and machine to machine
I have one datatable embedded in a parent component, last column of data table is editable but in case of inline editing, the box is not opening up for some screen size and it's varying machine to ...
0 votes
0 answers
136 views
datatable in omnistudio flexcard based on apex remote not showing data
this is the structure of data returned by my apex method which is being used by flexcard: { "FileWrapperList": "[ {\"lastModifiedDate\":\"2025-01-06T06:30:46....
0 votes
1 answer
787 views
fix horizontal scrollbar with lightning datatable
In my LWC, I write and like below. Some of Columns are editable, and when I try to click pencil icon in editable cell, horizontal scrollbar in go back to left end, sometime. It dosen't even happen ...
0 votes
1 answer
752 views
Custom Input data type in data table and Inline editing
Custom datatype in LWC datatable, Customizing the Quantity field as a custom input data type and the Price field for inline editing. When attempting to change the Quantity value, the value is captured,...
1 vote
0 answers
197 views
Flow Data Table with View Only still hows "0 Items Selected" and also highlighting an item
This is very annoying. I simply want to display a list of a few records in a flow. I added a Data Table, I specified the "View only" option. It displays the rows but it still says "0 ...
0 votes
1 answer
1k views
Add rows to a datatable
I have been working on a lighting data table and have now been able to edit the data table values and when saving create new records. My question is, can you add a row to a data table? I read where ...
0 votes
1 answer
924 views
Flexcard datatable condition not working
I am using a flexcard to display a data table and I am using a condition on the table to display only those where CaseStatus = New, however, it seems to totaly ignore the condition. Here is a json ...
0 votes
1 answer
326 views
List of editable options with flow
I have a screen flow that needs to get a list of products and the possibility of editing values in the field, such as price and quantity. I'm using a data table to get this list of products and ...
2 votes
0 answers
196 views
Display 6 decimal places in flow data table
I have a Flow that extracts data via an Apex call into a record collection in the Flow. This collection then displays in a data table for the user to verify and to select any they might want to omit ...
0 votes
1 answer
4k views
Update records updated in Flexcard Datatable
I want to replace the Opportunity related list component on the Account record page with a Flexcard that has a datatable element listing all the related Opportunity records. I am aware that this use ...
0 votes
1 answer
307 views
Get the label of edited column in lwc datatable
I have a datatable with 10 columns - ex - <template> <div style="height: 300px;"> <lightning-datatable key-field="id" ...
1 vote
1 answer
1k views
LWC: Custom Datatable with Multiple Objects Inline Editing
I've been trying to find an example to go off of, but not finding anything relevant. I've created a custom data-table in an LWC which pulls data from two separate objects and compiles them into a data-...
1 vote
0 answers
18 views
Sorting in data table not working [duplicate]
I have built a data table similar to something I have done before but now my sorting is not working and I cant figure it out. The difference between this data table and other I have built before is ...
1 vote
0 answers
445 views
Flexcard Datatable not showing icon
I am trying to add an icon to the flexcard datatable cell. There is an option to choose the data type as an icon. but I just can't make it work. Sample data I used: { "flexcard_datatable":...
1 vote
1 answer
1k views
LWC extract values from Apex Map<String,List<Sobject>>
In my LWC I am using an Apex Class to return a Map<String,List> containing lists for Leads and Contacts. I want to iterate this Map and use the individual lists in separate datatables. I have ...