Skip to content

Commit a7c1ed1

Browse files
Integrated latest changes at 12-10-2024 7:30:13 AM
1 parent 1f79e38 commit a7c1ed1

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

ej2-vue/code-snippet/grid/column/frozen-column-cs3/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ new Vue({
5757
},
5858
methods: {
5959
freezeDirectionFn: function () {
60-
this.$refs.grid.getColumnByField(this.$refs.columnDropdown.$el.ej2_instances[0].value).freeze = this.$refs.directionDropdown.$el.ej2_instances[0].value;
60+
this.$refs.grid.getColumnByField(this.$refs.columnDropdown.$el.ej2_instances[0].value).freeze = this.$refs.directionDropdown.$el.ej2_instances[0].value
6161
this.$refs.grid.refreshColumns();
6262
}
6363
},

ej2-vue/schedule/getting-started-vue-3.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ const ownerDataSource = [
233233
<script>
234234
data: function () {
235235
return {
236-
selectedDate = new Date(2023, 7, 8),
237-
eventSettings = {
236+
selectedDate: new Date(2023, 7, 8),
237+
eventSettings: {
238238
dataSource: [
239239
{
240240
Id: 1,
@@ -262,7 +262,7 @@ data: function () {
262262
}
263263
]
264264
},
265-
ownerDataSource =[
265+
ownerDataSource: [
266266
{ OwnerText: "Nancy", Id: 1, OwnerColor: "#ffaa00" },
267267
{ OwnerText: "Steven", Id: 2, OwnerColor: "#f8a398" },
268268
{ OwnerText: "Michael", Id: 3, OwnerColor: "#7499e1" }
@@ -391,8 +391,8 @@ export default {
391391
},
392392
data: function () {
393393
return {
394-
selectedDate = new Date(2023, 7, 8),
395-
eventSettings = {
394+
selectedDate: new Date(2023, 7, 8),
395+
eventSettings: {
396396
dataSource: [
397397
{
398398
Id: 1,
@@ -420,7 +420,7 @@ export default {
420420
}
421421
]
422422
},
423-
ownerDataSource =[
423+
ownerDataSource: [
424424
{ OwnerText: "Nancy", Id: 1, OwnerColor: "#ffaa00" },
425425
{ OwnerText: "Steven", Id: 2, OwnerColor: "#f8a398" },
426426
{ OwnerText: "Michael", Id: 3, OwnerColor: "#7499e1" }

ej2-vue/schedule/getting-started.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,9 @@ The output will display the Scheduler with the specified view configuration.
337337
{% highlight html tabtitle="~/src/App.vue" %}
338338
{% include code-snippet/schedule/view-cs1/app.vue %}
339339
{% endhighlight %}
340+
{% highlight html tabtitle="~/src/datasource.js" %}
341+
{% include code-snippet/schedule/view-cs1/datasource.js %}
342+
{% endhighlight %}
340343
{% endtabs %}
341344

342345
{% previewsample "page.domainurl/code-snippet/schedule/view-cs1" %}

0 commit comments

Comments
 (0)