Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove delete icon in one2many tree view

Please advice me on this.need to remove delete icon.but need to create and edit records. if i set it as readonly then unable to edit also.so what is the better way to implement this

delete icon

like image 305
Priyan RockZ Avatar asked Jan 14 '23 15:01

Priyan RockZ


1 Answers

Add delete="false" in tree tag.

<tree string="My Tree" delete="false">

This will remove delete option from one2many tree view.

like image 72
Sudhir Arya Avatar answered Jan 28 '23 08:01

Sudhir Arya