@boikom
@boikom
Forum Replies Created
-
AuthorPosts
-
admin
KeymasterHi davout,
Thank you for the feedback! Our documentation about this type of CSS layout is available here: https://www.htmlelements.com/docs/view-model-binding/.
What kind of documentation type are you looking for?
Regards,
Peter
Smart HTML Elements Team
https://www.htmlelements.com/admin
KeymasterHi davout,
That is CSS based layout and as such it should not be a Custom Element(Tag). It is similar to Bootstrap’s CSS layouts. The source of the demos is within the download package from our website. You can download from the https://www.htmlelements.com/download/ page.
Regards,
Peter
Smart HTML Elements Team
https://www.htmlelements.com/admin
KeymasterHi Mitesh,
Thanks for writing.
The type of selection you are looking for is not supported by our Kanban UI Component. It cannot be simulated with custom code and requires development by our Team. We will consider it for a future version of it.
Best regards,
Peter Stoev
Smart HTML Elements Team
https://www.htmlelements.com/July 29, 2020 at 5:54 am in reply to: minor cosmetic bug in comboBox multiple selection tokens #100949admin
KeymasterHi,
This looks like a bug, because the selection and focus visual appearance of an item is the same. The item looks like selected, but actually it is only focused. It is not part of the selectedIndexes collection anymore. Only items which appeal in the INPUT field are selected. The focused item is the item from which the keyboard navigation starts.
Best Regards,
Peter Stoev
Smart HTML Elements Team
https://www.htmlelements.com/admin
KeymasterHi Mitesh,
Unfortunately, there is currently no way of disabling the built-in context menu while keeping the Actions icon, but we will consider adding a mechanism for doing so. Thank you for your valuable feedback.
Best regards,
Dimitar
Smart HTML Elements Team
https://www.htmlelements.comJuly 25, 2020 at 5:13 am in reply to: How to set splitter item to take up all remaining space? #100940admin
KeymasterHi davout,
To achieve that you may use this:html, body { width: 100%; height: 100%; padding: 0; margin: 0; } app-public-home-header { display: block; width: 100%; height: 200px; background: #eee; } smart-splitter { width: 100%; height: 100%; }
Hope this helps.
Best Regards,
B. Markovadmin
KeymasterHi,
Your code seems OK as a workaround for your application scenario with ComboBox.
Best Regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi Peter,
It is possible to use a licensed version through NPM. As this information is not for a public forum, please write to support@jqwidgets.com or support@htmlelements.com for license unlock instructions.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi Gerhard,
I would suggest you to check the code and required scripts in this demo: https://www.htmlelements.com/demos/grid/print/.
The printing internally uses the Data Export and the Web Browser’s Printing API.
Best Regards,
Peter
Smart HTML Element
https://www.htmlelements.com/admin
KeymasterAlright,
I found the scripts for exporting PDF and XLSX, but I’m still having problems with the print method.
Where is the function implemented? Or is my version too old? How could I check that?
Greetings,
Gerhardadmin
KeymasterHi Peter,
thank you very much! That worked for me.admin
KeymasterHi Tr12,
Yes, it requires about 400ms for 30 textboxes. If this is slow for you, you can use our smart-input which is similar, but with more basic features.
Best Regards,
Peter
Smart HTML Elements Team
https://www.htmlelements.comadmin
KeymasterHi Tr12,
Actually, the previous was answered by my colleague. Anyway, you can call him Peter, too 🙂
When you add multiple HTML Elements, it would be better to add them just once in the DOM.const doc = document.createDocumentFragment(); for(let z = 0; z < 30; z++) { let text = new window.Smart.TextBox(); text.value = "abc"; doc.appendChild(text); } document.body.appendChild(doc);
Best Regards,
Peter
Smart HTML Elements Team
https://www.htmlelements.comadmin
KeymasterHi,
Thank you for the feedback. The behavior is confirmed and we will look at it for the next scheduled release.
Best Regards,
Peter
Smart UI Team
https://www.htmlelements.com/admin
KeymasterHi Tr12,
We are not sure from where the issue comes. We will have to test and debug that scenario.
Best regards,
Peter
Smart UI Team
https://www.htmlelements.com/ -
AuthorPosts