Skip to content

Commit

Permalink
v20.3.56 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
pipeline committed Nov 10, 2022
1 parent 3a6ab4e commit b99e267
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ej2-vue-samples",
"version": "20.3.47",
"version": "20.3.56",
"description": "Examples of Vue UI Components",
"keywords": [],
"dependencies": {
Expand Down
5 changes: 3 additions & 2 deletions src/file-manager/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div id="checkboxElement">Toolbar</div>
</td>
<td style="width: 50%; padding-right: 10px;">
<ejs-checkbox id="toolbar" :checked="true" :change="onChange"></ejs-checkbox>
<ejs-checkbox id="toolbar" ref="toolObj" :checked="true" :change="onChange"></ejs-checkbox>
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -92,7 +92,8 @@ export default Vue.extend ({
methods: {
onChange: function(args) {
var fileobj = this.$refs.fileObject.ej2Instances;
if (args.event.currentTarget.id === "toolbar") {
var toolobj = this.$refs.toolObj.ej2Instances;
if (toolobj.currentTarget.id === "toolbar") {
fileobj.toolbarSettings.visible = args.checked;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/maps/marker-template.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<e-markerSetting height='30' width='30' visible='true' :dataSource='dataSourceSydney' :template="'templateSydney'"></e-markerSetting>
<e-markerSetting height='30' width='30' visible='true' :dataSource='dataSourceAliceSprings' :template="'templateAlice'"></e-markerSetting>
<e-markerSetting height='30' width='30' visible='true' :dataSource='dataSourceBrisbane' :template="'templateBrisbane'"></e-markerSetting>
<e-markerSettings>
</e-markerSettings>
</e-layer>
</e-layers>
</ejs-maps>
Expand Down
2 changes: 1 addition & 1 deletion src/maps/osm-with-legend.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<e-layer layerType='OSM'>
<e-markerSettings>
<e-markerSetting visible='true' legendText='name' colorValuePath='color' shape='Circle' height='15' width='15' :dataSource='markerShapeDataSource' :tooltipSettings='markerTooltipSettings' />
<e-markerSettings>
</e-markerSettings>
</e-layer>
</e-layers>
</ejs-maps>
Expand Down
2 changes: 1 addition & 1 deletion src/maps/pie.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div id="pieChart1" style="height:70px;width:70px;"></div>
</template>
<template v-slot:pieTwoTemplate="{}">
<div id="pieChart2" style="height:70px;width:70px;">
<div id="pieChart2" style="height:70px;width:70px;"></div>
</template>
<template v-slot:pieThreeTemplate="{}">
<div id="pieChart3" style="top:10px;left:10px;height:70px;width:70px;"></div>
Expand Down

0 comments on commit b99e267

Please sign in to comment.