I have following requirement, if possible can you prepare some example for it ?
Hi Parth Rawal,
|
Queries |
Solution |
||
|
From your query we suspect that you need to perform Resize action on Edited cell. But we don’t have support to perform both actions together. We can perform resize action once the editing action gets complete.
If your requirement is different from above, please share details to proceed further |
||
|
While performing Resize action, resize icon shows while hovering over the corresponding column only.
Documentation link:- https://ej2.syncfusion.com/angular/documentation/treegrid/columns/column-resizing/
Demo link:- https://stackblitz.com/edit/angular-wrrmmi?file=app.component.html
Please share video demo or detailed Explanation about your requirement. |
||
|
1#Default Toolbar From your query you need to change the Tooltip for Default Toolbar Icons. We have achieved your requirement by using “Localization” library which allows us to localize the default text content of Tree Grid. We have already discussed the same in the below UG help documentation. https://ej2.syncfusion.com/angular/documentation/treegrid/global-local/#localization
Refer to the code below:-
Sample Link:- https://stackblitz.com/edit/angular-pysmi2?file=app.component.html,app.component.ts
2 #CustomToolbar Otherwise if you want to change Tooltip of the Custom Toolbar button, you can change the tooltipText property of the Toolbar Items.
Modified code of yours:-
From your provided code you can change the Tooltip by setting title attribute for the corresponding Id of the Toolbar button. document.getElementById('_gridcontrol_add').setAttribute('title', '_new content_'); //add Id for the Toolbar Items
You can follow anyone of the above solution to achieve your requirement. |
Regards,
Farveen sulthana T
If this post is helpful, please consider Accepting it as the solution so that other members can locate it more quickly.