@boykomarkov22gmail-com
@boykomarkov22gmail-com
Forum Replies Created
-
AuthorPosts
-
MarkovKeymaster
Hi,
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/MarkovKeymasterHi,
You can use the timelineHeaderFormatFunction(date, headerType, isSubHeader, dateString) and return the result to be displayed in that header.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/MarkovKeymasterHi,
We usually add the bug fixes & new features only in the new versions.
Best Regards,
MarkovSmart UI Team
https://www.htmlelements.com/MarkovKeymasterHi Zhang,
These are not resizable. They are all with one size as they represent dates.
Regards,
MarkovSmart UI team
https://www.htmlelements.com/ -
AuthorPosts