@svetoslav_borislavov
@svetoslav_borislavov
Forum Replies Created
-
AuthorPosts
-
svetoslav_borislavov
ParticipantHi,
The token click event is raised when you click on a pill of a selected item.
Please see this demo: https://codepen.io/svetoslavjqwidgets/pen/RwYQQEL- Select some items
- close the combobox
- click any pill of the selected items
- see in the console
I hope this helps!
Best Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
The only option to do this is to use the beginEdit event.
In the handler, you have access to the currently edited row or cell.
Having an access to it, you can determine whether to cancel the editing or not.
If you want to cancel it invoke the ‘cancelEdit’ method.Here is an example of the following behaviour: https://codepen.io/svetoslavjqwidgets/pen/mdGqOrX
I hope this helps resolve the problem!
Best Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
Can you please share your code, so that we can work on it?
You may send it here but the preferred way is to send it to support@jqwidgets.comBest Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
The event’s height depends on the duration of the event. You can change the height of the cells, this will impact the height of the event
Best Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
Thank you for reporting this!
I have opened an issue for that
Meanwhile, if you need any assistance, do not hesitate to contact us!Best Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
The only good way to do this is to get the current state, modify it and then load it.
Here is an example with our getState and loadState methods: https://www.htmlelements.com/demos/docking-layout/state/
I hope this helps!Best Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
Good! We are happy to hear that your problem is now resolved!
Best Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
The first thing to do is get the delete button in the ‘editDialogOpen’ and prevent the default behaviour.
This way the event will not be deleted upon a click.
It is important to add the click event of the delete button with a named function because if you add an anonymous function the handler will be fired as many times as you open the dialog.
After you have prevented the default behaviour you can open the desired confirmation modal and manipulate the scheduler with its events
Here is an example of preventing the default behaviour in vanilla JS.
It will be almost the same in React.jshttps://codepen.io/Svetoslav-Borislavov/pen/yLxMjqV?editors=0010
I hope this helps, if you have any further questions, do not hesitate to contact us!
Best Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
The event that you need to use is dragEnd. The dropoverCell is a special event that is added primarily for Blazor.
Just use dragEnd and everything will work.
https://stackblitz.com/edit/github-6gi9ff?file=src/app/app.component.tsBest Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
The reorder event is not cancelable, you can see that in the API here:
https://www.htmlelements.com/angular/demos/tabs/basic/#toc-ondragstartBest Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
Just add a position: relative to the .box elements:
https://codepen.io/Svetoslav-Borislavov/pen/poORNWZ?editors=1100I hope this resolves your problem!
Best Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
In the ngOnInit, the combo box is not yet initialized, to set a default dataSource to create a property this way:
https://stackblitz.com/edit/github-wppkr5-cxpva6?file=src/app/app.component.ts
The dropdown is empty because no items were previously addedBest Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
You can update the table with its method “updateItems” after the dynamic tiles have been set.
Here is a modified example: https://stackblitz.com/edit/github-un13v5-btzm1s?file=src/app/app.component.htmlIf you face any further problems, do not hesitate to contact us!
Best Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
The dataSource function is called on demand. You may use the change event of the input element to manipulate the dataSource.
Please see the following demo: https://stackblitz.com/edit/github-eefp9l-nzupc5?file=src/app/app.component.tsBest Regards
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/svetoslav_borislavov
ParticipantHi,
Can you please send a whole demo?
You can send a demo project to support@jqwidgets.com
or a complete component’s code here. (app.component.ts & app.component.html)
This way it will be easier to resolve the problemBest Regards,
Svetoslav BorislavovSmart UI Team
https://www.htmlelements.com/ -
AuthorPosts