@boikom
@boikom
Forum Replies Created
-
AuthorPosts
-
adminKeymaster
Hi LC,
The demo is for importing data from excel, not from json. If the local path to the data.xlsx file is correct, it will work, otherwise it will not be able to load data.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/adminKeymasterHi Nikhil Jain,
We are working on our next release coming in mid of December which will add support for dataFields mapping, binding to CSV & TSV. At present, there is no built-in way to map fields in Smart.Grid.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/adminKeymasterHi,
You’ve missed setting the mentioned in the previous post – groupMember property and also the grouped property which determines that Grouping is applied.<smart-combo-box grouped group-member="group" selection-display-mode="tokens" placeholder="Select items:"></smart-combo-box>
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/November 27, 2020 at 4:40 pm in reply to: Kanban loading is slow when many columns as same level #101179adminKeymasterHi MiteshJ,
The Kanban in the upcoming version will have Server-side model as a new feature, slightly improved performance and several bug fixes related to its rendering. Additional new features about it are currently not in our development plans.
Best regards,
Peter
Smart HTML Elements Team
https://www.htmlelements.comadminKeymasterHi LC,
The Table component is the one which can render TR, TD tags. It replaces the standard HTML Table. If you wonder about differences between Grid and Table, please refer to https://www.htmlelements.com/docs/grid-and-table/
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/adminKeymasterHi,
We will research whether any changes are required for future versions.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/adminKeymasterHi LC,
In order to data bind the Grid, you will need to set its dataSource property and set it to a DataAdapter or Array.
If you want to display a Grid from HTML Table, you can alternative use our Table component for Angular.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/adminKeymasterHi,
placeholder property is available in the combobox. You can use it, if you wish
Regards,
PeteradminKeymasterHi,
The component has also a groupMember which defines the group field in the data source. In this case, you can use it.
Regards,
PeterNovember 23, 2020 at 2:27 pm in reply to: How to change the Grid component's required smart.default.css to non-global #101167adminKeymasterHi,
As other styles, you should define this in angular.json. My suggestion is to read the angular getting started tutorials on our website. Just in case to mention is that we do not support Internet explorer. We support it in jqwidgets.com product.
Regards,
PeterNovember 23, 2020 at 1:19 pm in reply to: How to change the Grid component's required smart.default.css to non-global #101165adminKeymasterHi,
What do you mean by global? The css is required for the grid and the components used by the grid like buttons, inputs, windows, scrollbars, etc. It is one file for all smart ui components.
Regards,
PeteradminKeymasterHi umutalyu,
The component currently does not support close buttons in the Tabs. We will add such feature in the future releases of our Docking layout component.
You can enable pin and Pin Docking windows as shown in this demo: https://www.htmlelements.com/demos/docking-layout/overview/.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/adminKeymasterprivate object[] layoutStructure = new object[] {
new {
type = “LayoutGroup”,
orientation = “horizontal”,
items = new object[] {
new {
type = “LayoutGroup”,
size = 800,
items = new object[] {
new {
type = “LayoutPanel”,
label = “Input”,
id = “tabPanel”,
items = new object[] {
new {
type = “LayoutPanel”,
label = “Malzeme Kartları”,
content = “#myGrid”
},
new {
type = “LayoutPanel”,
label = “Satın Alma Faturaları”,
content = “#border-top-home”
}
}
}
}
}
}
}adminKeymasterHi,
You can combine these without a problem.<smart-combo-box item-template="template"> </smart-combo-box> <template id="template"> <span class="glyphicon glyphicon-ok">test</span> <span style="margin-left:5px;">{{label}}</span> </template>
JS Code
window.onload = function() {
const combobox = document.querySelector(‘smart-combo-box’);
combobox.dataSource = [“new item 1”, “new item 2”];
}
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/adminKeymasterHi,
We investigated the reported behavior about the CardView Search and we confirm it. The issue will be resolved in the next release scheduled for 04-Dec.
Best regards,
Peter Stoev
Smart UI Team
https://www.htmlelements.com/ -
AuthorPosts