BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
Hello,
Could you please help me to bind my data to an input field in my TreeGrid.
The ngModel is not changing the real data in the barcodes field in the datamanager.
As I want to scan/type a barcode into this field and it saves it to the child barcodes field and what would be even greater is if it would jump to the next child input field when receiving a newline command (\r\n).
These versions:
Greetings,
Stefan Habets
Attachment: weighteditems_b5b13a8f.zip
Hi Stefan Habets,
Greetings from Syncfusion Support.
You can use Syncfusion’s Barcode component to render barcodes in the TreeGrid column template. The barcode data can be dynamically set using the value property of the Barcode component. Please refer to the following code snippet:
<e-column field="barcodes" headerText="Barcode" width="175"> <ng-template #template let-data> <div *ngIf="!data.hasChildRecords"> <ejs-barcodegenerator id="barcode" width="150px" height="50px" [value]="data.barcodes" type="Code128" > </ejs-barcodegenerator> </div> </ng-template> </e-column>
|
For a working
example, please check the following sample:
🔗
Barcode in TreeGrid Column Template
Documentation on Barcode component:
https://ej2.syncfusion.com/angular/documentation/barcode/barcodegenerator
If you need further assistance, please let us know.
Regards,
Shek
Dear Shek,
Thank you for the answer. I have another question regarding the treeGrid and data in it.
My question is: How can I find the correct HTMLElement row by using the dataSource or ParentData in the tree grid when some rows are collapsed?
As I tried to use treegrid.getRowByIndex(index), however this index is the data index (see picture) and not the index of the html row list. I would expect getDataRows function to provide all rows but it gives only the expanded rows.
So how can I find correct html element when looping through the treegrid.parentData?
Hi Stephan Habets,
We suspect that you need to access a row using an HTML element. You can use the getRowInfo method and pass the HTML element as a parameter. We have prepared a simple sample demonstrating how to retrieve row information using an HTML element.
Please refer to the following sample:
If you have any concerns, please let us know.
Regards,
Sreedhar Kumar
Thank you, this was helpful. I can now find the correct HTML element by looping and comparing ids.
Although finding the HTML element using the row information would be even better.
Hi Stefan,
Thank you for the update. Please get back to us for assistance in the future.
Regards,
Shereen