@boykomarkov22gmail-com
@boykomarkov22gmail-com
Forum Replies Created
-
AuthorPosts
-
Markov
KeymasterHi Joko,
The value is returned correctly. The time input expects an array of two numbers and returns an array of two numbers. There is also additional method getFormattedValue() which returns the String value of the Input.
Regards,
MarkovMarkov
KeymasterHi Joko,
Yes, it is a string. The value returns the Input’s value as it is displayed.
The component has getValue method which returns the decimal value.Regards,
Markov-
This reply was modified 11 months, 3 weeks ago by
Markov.
Markov
KeymasterHi,
The only problem i could observe is that there are 1:, 2:, etc. in the provided data source which make it invalid array.
Below is a working sample:
const comboBox = document.querySelector("jqx-combo-box"); const vehileBrands = [{ id: 272, brand: 'GPS_TR08' }, { id: 2, brand: 'GPS_CONCOX_GT06MDF' }, { id: 3, brand: 'GPS_CONCOX_GT06' }, { id: 4, brand: 'GPS_CONCOX_GT07' }, { id: 5, brand: 'GPS_CONCOX_GT08' }, { id: 6, brand: 'GPS_CONCOX_GT700' }, { id: 7, brand: 'GPS_CONCOX_GT710' }, { id: 8, brand: 'GPS_CONCOX_GT800' }, { id: 9, brand: 'GPS_CONCOX_GT300' }, { id: 10, brand: 'GPS_CONCOX_GT03C' }, { id: 11, brand: 'GPS_CONCOX_GT02' }, { id: 12, brand: 'GPS_CONCOX_GT02D' }, { id: 13, brand: 'GPS_CONCOX_TR02' }, { id: 14, brand: 'GPS_CONCOX_TR06' }, { id: 15, brand: 'GPS_CONCOX_GK310' }, { id: 16, brand: 'GPS_CONCOX_GK309E' }, { id: 17, brand: 'GPS_CONCOX_GS503' }, { id: 30, brand: 'GPS_CONCOX_HVT001' } ]; comboBox.valueMember = "id"; comboBox.displayMember = "brand"; comboBox.dataSource = vehileBrands; comboBox.onchange = (event) => { console.log(event.detail); }
Regards,
MarkovMarkov
KeymasterHi Joko,
The type of the ‘value’ is expected to be String. You will see a console log message that the Type validation has failed, because a String value is expected.
You can use ‘1’ instead of 1.Regards,
MarkovMarkov
KeymasterThanks for the update, Fabriceb
Markov
KeymasterHi Aviv,
The fix will be in the next release of Smart UI in the first half of April.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi Vinh,
If you mean the https://www.htmlelements.com/demos/buttongroup/overview/, i think the Menu is closer to a toolbar as it supports dropdowns and overflow.
Best Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
For side bar purposes, we have the ListMenu component – https://www.htmlelements.com/demos/listmenu/overview/
As for toolbar purposes, the Menu component can also serve for this purpose – https://www.htmlelements.com/demos/menu/items-with-icons/ and https://www.htmlelements.com/demos/menu/hidden-scroll-buttons/Best Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
You can check our Tree component for sidebar purposes – https://www.htmlelements.com/demos/tree/overview/. For toolbar, i suppose you can use a regular DIV tag.
Best Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterThank you, Aviv. I was able to reproduce it.
Markov
KeymasterHi Aviv,
We are unable to reproduce this.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/February 21, 2024 at 6:14 pm in reply to: grouping-n-vertical-resources ALL Day when checked #109854Markov
KeymasterThanks for the feedback! We created a work item and this will be resolved in the next release of our product!
Markov
KeymasterHi,
We are unable to reproduce this and not aware what “long” is. Please, provide a sample which we can run and test in order to be able to help you.
Best Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi Catdoken,
I suppose the Grid is removed from the DOM and re-attached to it in your use-case and that may be the reason of internal set of this flag and re-calc of the row height. We will try to reproduce this scenario locally and update the component’s behavior.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/February 8, 2024 at 3:28 pm in reply to: When a Cell is edited it does not update back-end model #109814Markov
KeymasterHi Cesar,
The important thing here is that OnEndEdit handler should be there in order to get what’s edited by the user. Then you can use different options to send this information to the backend. In our help tutorial, we demonstrated a popular one.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/ -
This reply was modified 11 months, 3 weeks ago by
-
AuthorPosts