@boykomarkov22gmail-com
@boykomarkov22gmail-com
Forum Replies Created
-
AuthorPosts
-
July 3, 2024 at 8:10 am in reply to: How to hide a drop down arraw when there is no children for an item? #111088
Markov
KeymasterHi Aditya,
In this case, I suggest you to add a smart-tree-item instead. When you add children to it, it will automatically become a smart-tree-items-group.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
We will create a work item to add current time indicator in a month view.
Best Regards,
Markovhttps://www.htmlelements.com/
Smart UI TeamMarkov
KeymasterHi Aditya,
The 0.1.0 you refer means first level – index 0, sub level – index 1, sub sub level – index 0 which is the path of the item in the menu’s hierarchical structure.
As for getting a value, you can use the ‘itemClick’ event of the Menu. In the event.detail, there is label and value properties for getting the clicked menu item’s label and value.Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi Matias,
You can handle the ‘fileSelected’ event and add an additional custom button before or after the smart-file-upload component.
Best regads,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
You can use the tooltipFormatFunction(tooltipObject, event, tooltipContent). The returned value of this function is the content which will be shown in the tooltip.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
Could you provide a sample showing this behavior?
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
When the tooltip is opened, the ‘opening’ event is raised. In the event detail, there is a ‘type’ property which determines the tooltip’s type. It the type = ‘connection’, you can call event.preventDefault() and event.stopPropagation() methods.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
There are no tooltips for connections in our Gantt component – https://www.htmlelements.com/demos/gantt/task-connections/. In addition, tooltips by default are not enabled.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/June 13, 2024 at 10:34 pm in reply to: Passing and Accessing Values from timeLineHeaderFormat #111029Markov
KeymasterHi,
We do not have an event for this, yet.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/June 13, 2024 at 9:15 am in reply to: Passing and Accessing Values from timeLineHeaderFormat #111021Markov
KeymasterHi,
This is a callback function which is called when the rendering is running dynamically this means that you cannot access any params outside it.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
I would suggest you to use a DIV tag as a container and place images and radio buttons inside DIV tags with flex layout or Grid layout.
Ex:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Rows and Columns Layout</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div class="container"> <div class="row"> <div class="column">Column 1</div> <div class="column">Column 2</div> <div class="column">Column 3</div> </div> <div class="row"> <div class="column">Column 1</div> <div class="column">Column 2</div> </div> <div class="row"> <div class="column">Column 1</div> </div> </div> </body> </html>
CSS
* { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f4f4f4; } .container { width: 80%; margin: 0 auto; } .row { display: flex; flex-wrap: wrap; margin-bottom: 10px; } .column { flex: 1; padding: 15px; background-color: #ddd; border: 1px solid #ccc; margin: 5px; text-align: center; } /* Optional: Media queries for responsive design */ @media (max-width: 768px) { .column { flex: 100%; } }
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/June 4, 2024 at 4:36 am in reply to: Capturing Current Month and Week During Scroll Event in Gantt Chart #111000Markov
KeymasterHi,
At present, there is no such event. We will consider adding in the future versions of the Gantt Chart component.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
You can try the significant digits property: https://www.htmlelements.com/docs/numerictextbox-api/#toc-significantdigits_number
Best Regards,
MarkovSmart UI Team
https://www.htmlelements.com/May 9, 2024 at 10:51 am in reply to: Query builder | Custom operation hideValue doesn’t prevent opening dropdown #110704Markov
KeymasterHi,
This is an issue in the component. It opens the editor, even if it is hidden in this case. I created a work item about this. As a workaround, you can either disable autoPrompt or hideValue.
Thank you for the feedback!
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi aza21,
Thank you for the feedback! We cannot offer a solution for this scenario. We will need to resolve it in our code.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/ -
AuthorPosts