jQWidgets Forums
Forum Replies Created
-
Author
-
where can I see the vue3 demo?
Do i need to use smart UI to use Vue3?January 11, 2021 at 1:36 am in reply to: .vue file to js file didn`t work .vue file to js file didn`t work #114188i solved.!
this is my vue_jqxgrid.jsimport ‘../jqwidgets/jqxcore.js’;
import ‘../jqwidgets/jqxdata.js’;
import ‘../jqwidgets/jqxdata.export.js’;
import ‘../jqwidgets/jqxbuttons.js’;
import ‘../jqwidgets/jqxbuttongroup.js’;
import ‘../jqwidgets/jqxscrollbar.js’
import ‘../jqwidgets/jqxmenu.js’
import ‘../jqwidgets/jqxlistbox.js’
import ‘../jqwidgets/jqxdropdownlist.js’
import ‘../jqwidgets/jqxcombobox.js’
import ‘../jqwidgets/jqxnumberinput.js’
import ‘../jqwidgets/jqxcheckbox.js’
import ‘../jqwidgets/globalization/globalize.js’
import ‘../jqwidgets/jqxcalendar.js’
import ‘../jqwidgets/jqxnumberinput.js’
import ‘../jqwidgets/jqxdatetimeinput.js’
import ‘../jqwidgets/jqxgrid.js’
import ‘../jqwidgets/jqxgrid.edit.js’
import ‘../jqwidgets/jqxgrid.pager.js’
import ‘../jqwidgets/jqxgrid.selection.js’
import ‘../jqwidgets/jqxgrid.filter.js’
import ‘../jqwidgets/jqxgrid.sort.js’
import ‘../jqwidgets/jqxgrid.storage.js’
import ‘../jqwidgets/jqxgrid.grouping.js’
import ‘../jqwidgets/jqxgrid.export.js’
import ‘../jqwidgets/jqxgrid.columnsresize.js’
import ‘../jqwidgets/jqxgrid.columnsreorder.js’
import ‘../jqwidgets/jqxgrid.aggregates.js’
import ‘../jqwidgets/jqxgrid.chart.js’export default {
template: `<div v-bind:id=”id”>
<slot></slot>
</div>`,
props: {
altrows: Boolean,
altstart: Number,
altstep: Number,
autoshowloadelement: Boolean,
autoshowfiltericon: Boolean,
autoshowcolumnsmenubutton: Boolean,
showcolumnlines: Boolean,
showrowlines: Boolean,
showcolumnheaderlines: Boolean,
adaptive: Boolean,
adaptivewidth: Number,
clipboard: Boolean,
closeablegroups: Boolean,
columnsmenuwidth: Number,
columnmenuopening: Function,
columnmenuclosing: Function,
cellhover: Function,…
January 8, 2021 at 6:16 am in reply to: Question about "jqxTooltip" of vue component Question about "jqxTooltip" of vue component #114158is it work?
i met this errorUncaught TypeError: Cannot read property 'appendChild' of undefined
December 28, 2020 at 11:20 pm in reply to: .vue file to js file didn`t work .vue file to js file didn`t work #114119Hi! i want use grid component directly in jsp file.
but .vue file can’t import.
so i was build library. and import with script tag but it didn’t work.December 14, 2020 at 6:54 am in reply to: my grid return [object Object], return nothing.. my grid return [object Object], return nothing.. #113799..if root is content result is what i want
but i use other information in my grid.. so root is must be data.
please help me.. ㅠㅠDecember 14, 2020 at 6:21 am in reply to: my grid return [object Object], return nothing.. my grid return [object Object], return nothing.. #113796hello martin!
data: function () { return { datas: null, getWidth: '100%', dataAdapter: new jqx.dataAdapter(this.source), //dataAdapter columns: [ {text: 'id', datafield: 'id'} ] } }, beforeCreate: function () { this.source = { datatype: 'json', mapChar: '>', datafields: [ {name: 'content', type: 'array', map: 'information4>content>0>id'} ], root: 'data', url: '/configure/test_list.json', pagenum: '0', pagesize: '20', data: { network_id: "1", term_type: "2h" } }; },
i understand how to work map..
but i want every id result in grid. that code is work but result is just 1!
how can i return every id in information4>content?
this is what i want
|id|no|
|1|1|
|2|2| -
AuthorPosts