@boikom
@boikom
Forum Replies Created
-
AuthorPosts
-
admin
KeymasterHi,
Yes, this is possible. Please, take a look at https://www.htmlelements.com/angular/demos/grid/server-side-paging-sorting-filtering-mysql-php/
Hope this helps.
Best regards,
MarkovSmart UI team
https://www.htmlelements.com/admin
KeymasterHi,
Please, take a look at https://www.htmlelements.com/docs/gantt/. It shows how to get started with the Gantt in Vue.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/July 17, 2025 at 4:05 pm in reply to: I’m trying to understand more about: “Scheduler”. Any tips? #112678admin
KeymasterHi,
Yes, Smart Scheduler can be used inside modals or dialogs in Vue
Example:
<template> <div> <button @click="showModal = true">Open Scheduler</button> <smart-window v-if="showModal" label="Scheduler Modal"> <smart-scheduler :dataSource="schedulerData"></smart-scheduler> </smart-window> </div> </template>
Hope this helps.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi,
To set the id of the Grid, set the id property of the dataAdapter object to the dataField you want to be used as an ID.
Best Regards,
MarkovSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi,
Please, look at https://www.htmlelements.com/demos/grid/column-dynamic-template-with-components/. The demo is using buttons and handles the clicks.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi,
We do not have such event at present.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi Joost,
I prepared it for you. It is not part of official docs.
Best regards,
Peter StoevSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi Scott,
We tried to reproduce this without much success. Could you share a full sample which shows the issue you experienced?
Best regards,
PeterSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi Joost,
The ripple effect is defined with the .smart-ripple CSS class. You can do this:
.smart-ripple { animation: none; visibility: hidden; }
Best regards,
Peter StoevSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi Scott,
The code should be updated like this:
document.querySelector('button').onclick = () => { const table = document.getElementById('table'); const state = table.saveState(); table.clearSort(); table.updateRow('c', {id: 'bc', name: 'Item C2'}); table.loadState(state); }
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi Matias,
The current version of the product uses the ‘placeholder’ key from the ‘messages’ property as this is part of the localization process of the Grid. The placeholder property is used for backward compatibility only if the ‘placeholder’ key is not defined, but in the current version it is and its value is ‘No rows’ which means that the solution is to set a new value of the ‘placeholder’ in the ‘messages’ property.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi,
Sorry, the correct property for the taskColumns is hidden: true, not visible: false.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi,
It is not possible to apply custom formatting at present.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi,
You can apply to the button tag using CSS the following: display: flex; and align-items: center; if you want the Text and Image to be aligned.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/admin
KeymasterHi,
I suppose you will need to use Javascript and JSInterop if you want to preventDefault and event. In Blazor with .NET code using the eventObj it cannot happen.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/ -
AuthorPosts