@boikom
@boikom
Forum Replies Created
-
AuthorPosts
-
admin
KeymasterHi LC,
The selection is by row, not by index. When you select a row and change the sort order, the row stays selected even if it is not in the same position in the data grid. For example, select the row with first name = “Andrew”. Now change the sort order. The row remains selected after changing the sort order.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi LC,
1. We were unable to reproduce the ‘jumping cursor’. We will need a codepen or stackblitz example to see the behavior.
2. Regarding the second issue with the sorting being not applied after adding a new row. We were able to reproduce this. You can call ‘refreshSort’ after adding a new datagrid row. This can be used as a workaround.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi AURAGARD,
Thank you for the feedback. We will fix this in the next release. As a temporary workaround, you can add a label tag before the smart-password-text-box html tag.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterIt is not possible to drag a minimized window by design.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi,
As far as I see, you have Javascript code in your example which does that. The way you do it seems to be OK.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi,
No, this is mot possible in this version of the gantt chart. We will consider adding such functionality in the next version.
Regards,
Boyko
Smart UI
Htmlelements.comadmin
KeymasterHi Nikhil Jain,
TreeGrid virtualization is about loading on demand of new data when a row is expanded. That is the Virtualization UI Design for Tree-like data structures. Virtual scrolling in Tree-mode is something which is not possible for such type of data structure and so it cannot be implemented even if we want to.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi Nikhil Jain,
We will consider. We suggest you to use the ‘change’ event which is the special event for selection.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi,
You can access the datasource members by index and there is also a length property i.e quite easy an artay can be retrieved by just looping through the datasource with for i = 0 to datasource.length.
Regards,
Peteradmin
KeymasterHi Nikhil,
allowHide does not hide a column. It determines whether a column can be hidden via the column chooser. To hide a column you should use the visible property and set it to false.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi LC,
You can use the grid.dataSource property to get the Grid’s data source with the edits made by the end-user or through API. You can use it in order to update your parent component.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/December 2, 2020 at 2:03 pm in reply to: Kanban loading is slow when many columns as same level #101203admin
KeymasterHi Mitesh,
Our next release is currently planned for the second half of this month.
Best regards,
Peter
Smart HTML Elements Team
https://www.htmlelements.comadmin
KeymasterHi Nikhil Jain,
The ‘change’ event which is raised by the Grid is only raised when selection changes and will have event.detail object. This can be used for detection whether the event is raised by the Grid or by some internal HTML element which is used as an editor for example.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi Nikhil Jain,
The DataGrid ‘change’ event should be used as it is the event raised after the selection is changed.
Example: https://www.htmlelements.com/demos/grid/selection-mode-events/
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi Nikhil,
this.source.dataSource[0][‘columnName’] = “something” is Invalid code. this.source.dataSource[0][‘columnName’]=”dataupdated”; is not updating the data source and does not notify the Grid that the data source is updated.
You should be using the Grid API for that as show in this example: https://www.htmlelements.com/demos/grid/live-update/
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/ -
AuthorPosts