You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/AngularJS/Troubleshooting/common-issues.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ For example, a DatePicker with an empty `value` attribute will not initialize.
29
29
});
30
30
```
31
31
32
-
In the previous example, the widget checks the `tag` element attributes and finds a `value` attribute, because it has a [`value`](/api/javascript/ui/datepicker#configuration-value) option. The evaluation against the `$scope` returns `undefined` and the widget does not initialize.
32
+
In the previous example, the widget checks the `tag` element attributes and finds a `value` attribute, because it has a [`value`](/api/javascript/ui/datepicker/configuration/value) option. The evaluation against the `$scope` returns `undefined` and the widget does not initialize.
@@ -679,7 +679,7 @@ AngularJS creates a new scope for the content placed in a window. The reason for
679
679
680
680
The available workaround is either:
681
681
682
-
* To use the [`appendTo`](http://docs.telerik.com/kendo-ui/api/javascript/ui/window#configuration-appendTo) option to append the window to another HTML element which is part of the Angular application and scope, or
682
+
* To use the [`appendTo`](http://docs.telerik.com/kendo-ui/api/javascript/ui/window/configuration/appendto) option to append the window to another HTML element which is part of the Angular application and scope, or
683
683
* To initialize the AngularJS application on the body.
684
684
685
685
The following example demonstrates the first approach and it shows how to find the window or popup element and get the scope from it.
Copy file name to clipboardExpand all lines: docs/AngularJS/the-grid-widget.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ This article outlines some of its particularities regarding the AngularJS integr
16
16
17
17
> **Important**
18
18
>
19
-
> AngularJS evaluates a template expression placed as [`column.title`](/api/javascript/ui/grid#configuration-columns.title) content. To avoid this behavior, set a [`ng-non-bindable`](https://docs.angularjs.org/api/ng/directive/ngNonBindable) attribute through the [`headerAttributes`](/api/javascript/ui/grid#configuration-columns.headerAttributes) so that AngularJS skips the expression evaluation.
19
+
> AngularJS evaluates a template expression placed as [`column.title`](/api/javascript/ui/grid/configuration/columns.title) content. To avoid this behavior, set a [`ng-non-bindable`](https://docs.angularjs.org/api/ng/directive/ngNonBindable) attribute through the [`headerAttributes`](/api/javascript/ui/grid/configuration/columns.headerattributes) so that AngularJS skips the expression evaluation.
20
20
21
21
The following example demonstrates how to use the `headerAttributes` to prevent the execution of expressions inside the title content.
22
22
@@ -219,7 +219,7 @@ The following example demonstrates how to use the `sum` aggregate in a `footerTe
Copy file name to clipboardExpand all lines: docs/AngularJS/tutorials/sushi-angular-tutorial.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ For a live preview, click [here](http://dojo.telerik.com/@valchev/exeS).
116
116
117
117
### Making the Application SEO-Friendly
118
118
119
-
To [create a SEO (Search Engine Optimization)-friendly](http://googlewebmastercentral.blogspot.com/2009/10/proposal-for-making-ajax-crawlable.html) mobile application, all you need to do is turn on the [`hashBang`](/api/javascript/mobile/application#configuration-hashBang) configuration. The configuration can also be set directly [in the markup]({% slug angularjs_integration_directives %}#widget-options-in-html).
119
+
To [create a SEO (Search Engine Optimization)-friendly](http://googlewebmastercentral.blogspot.com/2009/10/proposal-for-making-ajax-crawlable.html) mobile application, all you need to do is turn on the [`hashBang`](/api/javascript/mobile/application/configuration/hashbang) configuration. The configuration can also be set directly [in the markup]({% slug angularjs_integration_directives %}#widget-options-in-html).
120
120
121
121
###### Example
122
122
@@ -284,7 +284,7 @@ Add a new mobile View called **Our Menu** and add a new ListView with ID `menuLi
284
284
285
285
## Using Event Handlers
286
286
287
-
Now you are going to configure the ListView located in the **Home** View to display only the featured products and the ListView located in **Our Menu** View to display a list of all products grouped by their first letter and ordered alphabetically. To do that, use the [DataSource API](/api/javascript/data/datasource#methods) and the [`beforeShow`](/api/javascript/mobile/ui/view#events-beforeShow) event of the mobile View.
287
+
Now you are going to configure the ListView located in the **Home** View to display only the featured products and the ListView located in **Our Menu** View to display a list of all products grouped by their first letter and ordered alphabetically. To do that, use the [DataSource API](/api/javascript/data/datasource#methods) and the [`beforeshow`](/api/javascript/mobile/ui/view/events/beforeshow) event of the mobile View.
288
288
289
289
Add the `k-on-before-show` attribute to the View elements and specify the event handler name.
0 commit comments