@boykomarkov22gmail-com
@boykomarkov22gmail-com
Forum Replies Created
-
AuthorPosts
-
Markov
KeymasterHi fabriceb,
The issue is reproduced and will be resolved in the next version.
Thanks again for the feedback.
Regards,
MarkovMarkov
KeymasterHi fabriceb,
Thank you for the feedback. We will research this and resolve it as soon as possible.
Regards,
MarkovMarkov
KeymasterHi,
There’s no such property. The Dropdownlist supports multiple selection and its value can be retrieved from the selectedValues property.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
When the dropdownlist’s change event occurs, the hidden input’s value is with the correct selected value. If you would like our team to test your use-case, please share a codepen example which demonstrates an issue and we will test it.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
When the change event occurs, the event.detail.value returns the value of the selected item.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi Lukas,
Could you provide a full sample which we can try?
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi Lukas Xaver,
This rendering depends on the messages and locale. It is automatic time formatting based on the ‘locale’ set to the Scheduler. It formats the time using the native Intl.DateTimeFormat API, i.e in order to change it, you will have to set the messages property and the locale property, too.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/November 22, 2023 at 8:30 am in reply to: Can i using multiple Color for importantDates Calendar #109198Markov
KeymasterHi,
Please, take a look at https://www.htmlelements.com/demos/calendar/multiple-months/
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
When there is not enough space, it adds ellipsis. In case you want to change the width of that column, due to the fact that the column is part of the auto-generated columns, you can use the layout.autoGenerateColumnWidth property.
Example:
layout: { autoGenerateColumnWidth: 100 },
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/November 20, 2023 at 10:07 am in reply to: Can i using multiple Color for importantDates Calendar #109187Markov
KeymasterHi Anh Hoang,
This functionality is available in our Scheduler control – https://www.htmlelements.com/react/demos/scheduler/overview/
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi chaos,
The left panel uses our Tree component. The right panel which opens when you click the settings button is a standard DIV tag.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi LarsinGame,
You can use the Grid’s const state = saveState() to save the current state of the Grid and loadState(state) method to load a previous state. It will save and load the applied filters.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi chaos,
Please, refer to https://www.figma.com/community/file/1192112643834873838/smart-ui-kit-for-figma
Best Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi Ferris,
Please, share a complete project link to github or send it via email as we are unable to reproduce the issue you reported.
Thank you in advance1
Regards,
MarkovSmart UI
https://www.htmlelements.com/Markov
KeymasterHi,
The example shows how you can send details to a server and then send back the server result to the Grid via a callback function. The important part of the example is the code below with the synchronization of the Grid with the data model. In your case, here you should make AJAX calls to a server and update the Grid on success.
virtualDataSource: function (resultCallbackFunction, details) { if (details.action === 'dataBind') { // inits the demo server. window.demoServer = DemoServer(); const result = window.demoServer.getData(details); // logs the data below the component. LogData(result.data); resultCallbackFunction({ dataSource: result.data, lastId: result.lastId, virtualDataSourceLength: result.length }); } else { const result = window.demoServer.getData(details); // logs the data below the component. LogData(result.data); resultCallbackFunction({ dataSource: result.data, lastId: result.lastId, virtualDataSourceLength: result.length }); } },
Best Regards,
MarkovSmart UI Team
https://www.htmlelements.com/ -
AuthorPosts