@boykomarkov22gmail-com
@boykomarkov22gmail-com
Forum Replies Created
-
AuthorPosts
-
MarkovKeymaster
Hi,
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/MarkovKeymasterHi,
Could you provide a sample showing this behavior?
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/MarkovKeymasterHi,
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/MarkovKeymasterHi,
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 #111029MarkovKeymasterHi,
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 #111021MarkovKeymasterHi,
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/MarkovKeymasterHi,
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 #111000MarkovKeymasterHi,
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/MarkovKeymasterHi,
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 #110704MarkovKeymasterHi,
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/MarkovKeymasterHi 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/MarkovKeymasterHi Shubham,
Please, refer to https://www.htmlelements.com/demos/gantt/export/. PDF export is demonstrated there.
Best regards,
Peter StoevSmart UI Team
https://www.htmlelements.com/MarkovKeymasterHi Shubham,
These files should be added as they are used in the data export process:
` <script type=”text/javascript” src=”https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.5/jszip.min.js”></script>
<script type=”text/javascript” src=”https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.38/pdfmake.min.js”></script>
<script type=”text/javascript” src=”https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.38/vfs_fonts.js”></script>`Best Regards,
MarkovSmart UI Team
https://www.htmlelements.com/MarkovKeymasterHi Varshitha,
Yes, you can define CSS classes and put additional styles to them. I would suggest you to extend instead of override, because when you override you can break the component’s layout.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/MarkovKeymasterHi,
The ‘dateStart’ property determines the start date of the view.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/ -
AuthorPosts