@boykomarkov22gmail-com
@boykomarkov22gmail-com
Forum Replies Created
-
AuthorPosts
-
Markov
KeymasterThank you, Aviv. I was able to reproduce it.
Markov
KeymasterHi Aviv,
We are unable to reproduce this.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/February 21, 2024 at 6:14 pm in reply to: grouping-n-vertical-resources ALL Day when checked #109854Markov
KeymasterThanks for the feedback! We created a work item and this will be resolved in the next release of our product!
Markov
KeymasterHi,
We are unable to reproduce this and not aware what “long” is. Please, provide a sample which we can run and test in order to be able to help you.
Best Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi Catdoken,
I suppose the Grid is removed from the DOM and re-attached to it in your use-case and that may be the reason of internal set of this flag and re-calc of the row height. We will try to reproduce this scenario locally and update the component’s behavior.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/February 8, 2024 at 3:28 pm in reply to: When a Cell is edited it does not update back-end model #109814Markov
KeymasterHi Cesar,
The important thing here is that OnEndEdit handler should be there in order to get what’s edited by the user. Then you can use different options to send this information to the backend. In our help tutorial, we demonstrated a popular one.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/February 8, 2024 at 1:37 pm in reply to: When a Cell is edited it does not update back-end model #109812Markov
KeymasterHi Cesar,
As a frontend UI component, it does not automatically update the backend. This requires custom code to synchronize the front-end with the backend. You can read how to do this here: https://www.htmlelements.com/docs/blazor-grid-server-side-crud/
Regards,
MarkovMarkov
KeymasterHi Catdoken,
I would request a stackblitz sample in order to test the specific use case.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
1. The rowResize event is called only when the row size is updated by the user via drag and resize of a row header. It is not called when you manually set row height by using the row’s height property.
2. The .smart-grid-cell-editor CSS class is applied to cell editors and you can use it for styling purposes.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi matdjon,
Could you send a sample of this?
Best regards,
MarkovSmart UI team
https://www.htmlelements.com/January 18, 2024 at 9:42 am in reply to: Tree Table with different table header for each hierachy #109714Markov
KeymasterHi Hazwani,
Could you share an example of this? Screenshot will help.
Best regards,
MarkovMarkov
KeymasterHi,
The Tree will raise a change event after editing is finished.
Best regards,
MarkovSmart UI team
https://www.htmlelements.com/Markov
KeymasterHi,
It is not possible to have different cell editors in the different rows. The editors are per column.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
You can use the contextMenuOpening event to prevent the default context menu. In the event.detail, depending on whether you clicked a cell or event, you will have either cellObj or eventObj. By calling event.preventDefault() you will prevent the default context menu and you can open a custom context menu.
Best regards,
Peter StoevSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi Catdoken,
You can try the Grid’s onCellBeginEdit callback function. grid.onCellBeginEdit = (id, dataField, cellValue) => { if (id === 2) return false; }
Best regards,
Markov -
AuthorPosts