Skip to content

Commit 2e76c02

Browse files
Docs builder content changes (#601)
* fixing errors for new tool * added product and contribute url to docs-builder * fixed code blocks in list items * fixed heading encoding * Added meta section * fixing h1 in kbs * added cse * added product trial url to config * added cta messages * Added redirects * Added intro columns to config * fixed trial url * fixed broken table * added missing config entry and fixed redirect * fixed prev url escaping * fixed config yml slug * fixing broken redirects * fixed textbox overview redirect * fixing malformed code blocks * fixing product url * fixing acii characters in frontmatter * fixed indented non code blocks * fixing wrong link * fixed 2 wrongly indented code blocks * fixing broken lins * fixed special symbols in metadata * fixing missing images and broken code blocks * fixed broken code blocks for jekyll * fixing broken content and redirects * fixed broken KB content * fixing config & content to match katana changes * content fixes after rebase * added navigation exclude to knowledge base articles * added contribute-url * added enable tabbed code blocks * fixed broken kb file name * updated meta section * reversed meta section * fixing CTA panels * added intro table * uncommented distorted appearance template and added empty image * fixing no-results image dimensions * added pdf cover * added pdf cover image to config * added img max width setting * fixing document processing redirects * added table layout * added new search engine id
1 parent 738046f commit 2e76c02

File tree

92 files changed

+4309
-2042
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+4309
-2042
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Telerik® UI for ASP.NET AJAX Documentation Repo
3-
publish: false
3+
published: false
44
---
55

66
# Telerik® UI for ASP.NET AJAX Documentation
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#intro-base
1+
#intro-base
22
This article demonstrates how to enable and use the WAI-ARIA support of the
33
#end
44

@@ -8,4 +8,4 @@ This article demonstrates how to enable and use the WAI-ARIA support of the
88

99
#intro-two-controls
1010
@[template](/_templates/common/wai-aria-templates.md#intro-base) **@{control1}** and **@{control2}** controls.
11-
#end
11+
#end

all-pages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
publish: false
2+
published: false
33
layout: null
44
---
55

api/client/Telerik.Web.UI.RibbonBarTab.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Gets the hierarchical index inside the parent RadRibbonBar
174174

175175
### get_labelElement
176176

177-
Returns the <a> DOM element containing the Tab's text element.
177+
Returns the &lt;a&gt; DOM element containing the Tab's text element.
178178

179179
#### Parameters
180180

api/client/args/Telerik.Web.UI.RibbonBarMaximizedEventArgs.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
title: Telerik.Web.UI.RibbonBarMaximizеdEventArgs
2+
title: Telerik.Web.UI.RibbonBarMaximizedEventArgs
33
description: Client-side API Reference
4-
slug: Telerik.Web.UI.RibbonBarMaximizеdEventArgs
4+
slug: Telerik.Web.UI.RibbonBarMaximizedEventArgs
55
---
66

77
# Telerik.Web.UI.RibbonBarMaximizеdEventArgs
88

99

1010
Inheritance Hierarchy
1111

12-
* [Telerik.Web.UI.RibbonBarMaximizеdEventArgs]({%slug Telerik.Web.UI.RibbonBarMaximizеdEventArgs%})
12+
* [Telerik.Web.UI.RibbonBarMaximizеdEventArgs]({%slug Telerik.Web.UI.RibbonBarMaximizedEventArgs%})
1313

1414

1515
Methods

api/server/Telerik.Web.UI.Calendar/DatePickerClientEvents.md

+41-9
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,17 @@ Gets or sets the name of the client-side event handler that is executed prior to
3131
There can be some conditions you do want not to close the calendar popup on
3232
click over it. Then you should cancel the event either by return false; or
3333
set its argument args.CancelClose = true;
34-
<script type="text/javascript">function Closing(sender, args){ args.CancelClose = true; //or return false;}</script><radCln:RadDatePicker ID="RadDatePicker1" runat="server"> <ClientEvents OnPopupClosing="Closing"/></radCln:RadDatePicker>
34+
35+
````ASP.NET
36+
<script type="text/javascript">
37+
function Closing(sender, args){
38+
args.CancelClose = true; //or return false;
39+
}
40+
</script>
41+
<radCln:RadDatePicker ID="RadDatePicker1" runat="server">
42+
<ClientEvents OnPopupClosing="Closing"/>
43+
</radCln:RadDatePicker>
44+
````
3545

3646
### OnPopupOpening `String`
3747

@@ -40,12 +50,34 @@ Gets or sets the name of the client-side event handler that is executed prior to
4050

4151
#### Remarks
4252
There can be some conditions you do want not to open the calendar popup on
43-
click of the popup button. Then you should cancel the event either by return
44-
false; or set its argument args.CancelOpen = true;
45-
<script type="text/javascript">function Opening(sender, args){ args.CancelOpen = true; //or return false;}</script><radCln:RadDatePicker ID="RadDatePicker1" runat="server"> <ClientEvents OnPopupOpening="Opening"/></radCln:RadDatePicker>
46-
Set the args.CancelSynchronize = true; to override the default
47-
DatePicker behavior of synchronizing the date in the DateInput and Calendar
48-
controls. This is useful for focusing the Calendar control on a date different from
49-
the DateInput one.
50-
<script type="text/javascript">function Opening(sender, args){ args.CancelCalendarSynchronize = true; sender.Calendar.NavigateToDate([2006,12,19]);}</script><radCln:RadDatePicker ID="RadDatePicker1" runat="server" > <ClientEvents OnPopupOpening="Opening"/></radCln:RadDatePicker>
53+
click of the popup button. Then you should cancel the event either by return
54+
false; or set its argument args.CancelOpen = true;
55+
56+
57+
````ASP.NET
58+
<script type="text/javascript">
59+
function Opening(sender, args) {
60+
args.CancelOpen = true; //or return false;
61+
}
62+
</script>
63+
<radCln:RadDatePicker ID="RadDatePicker1" runat="server">
64+
<ClientEvents OnPopupOpening="Opening"/></radCln:RadDatePicker>
65+
````
66+
67+
Set the args.CancelSynchronize = true; to override the default
68+
DatePicker behavior of synchronizing the date in the DateInput and Calendar
69+
controls. This is useful for focusing the Calendar control on a date different from
70+
the DateInput one.
71+
72+
````ASP.NET
73+
<script type="text/javascript">
74+
function Opening(sender, args){
75+
args.CancelCalendarSynchronize = true;
76+
sender.Calendar.NavigateToDate([2006,12,19]);
77+
}
78+
</script>
79+
<radCln:RadDatePicker ID="RadDatePicker1" runat="server" >
80+
<ClientEvents OnPopupOpening="Opening"/>
81+
</radCln:RadDatePicker>
82+
````
5183

api/server/Telerik.Web.UI.Calendar/DateRangePickerClientEvents.md

+39-9
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,18 @@ Gets or sets the name of the client-side event handler that is executed prior to
2929

3030
#### Remarks
3131
There can be some conditions you do want not to close the calendar popup on
32-
click over it. Then you should cancel the event either by return false; or
33-
set its argument args.CancelClose = true;
34-
<script type="text/javascript">function Closing(sender, args){ args.CancelClose = true; //or return false;}</script><radCln:RadDatePicker ID="RadDatePicker1" runat="server"> <ClientEvents OnPopupClosing="Closing"/></radCln:RadDatePicker>
32+
click over it. Then you should cancel the event either by return false; or
33+
set its argument args.CancelClose = true;
34+
````ASPX
35+
<script type="text/javascript">
36+
function Closing(sender, args){
37+
args.CancelClose = true; //or return false;
38+
}
39+
</script>
40+
<radCln:RadDatePicker ID="RadDatePicker1" runat="server">
41+
<ClientEvents OnPopupClosing="Closing"/>
42+
</radCln:RadDatePicker>
43+
````
3544

3645
### OnPopupOpening `String`
3746

@@ -42,10 +51,31 @@ Gets or sets the name of the client-side event handler that is executed prior to
4251
There can be some conditions you do want not to open the calendar popup on
4352
click of the popup button. Then you should cancel the event either by return
4453
false; or set its argument args.CancelOpen = true;
45-
<script type="text/javascript">function Opening(sender, args){ args.CancelOpen = true; //or return false;}</script><radCln:RadDatePicker ID="RadDatePicker1" runat="server"> <ClientEvents OnPopupOpening="Opening"/></radCln:RadDatePicker>
46-
Set the args.CancelSynchronize = true; to override the default
47-
DatePicker behavior of synchronizing the date in the DateInput and Calendar
48-
controls. This is useful for focusing the Calendar control on a date different from
49-
the DateInput one.
50-
<script type="text/javascript">function Opening(sender, args){ args.CancelCalendarSynchronize = true; sender.Calendar.NavigateToDate([2006,12,19]);}</script><radCln:RadDatePicker ID="RadDatePicker1" runat="server" > <ClientEvents OnPopupOpening="Opening"/></radCln:RadDatePicker>
54+
````ASPX
55+
<script type="text/javascript">
56+
function Opening(sender, args){
57+
args.CancelOpen = true; //or return false;
58+
}
59+
</script>
60+
<radCln:RadDatePicker ID="RadDatePicker1" runat="server">
61+
<ClientEvents OnPopupOpening="Opening" />
62+
</radCln:RadDatePicker>
63+
````
64+
65+
Set the args.CancelSynchronize = true; to override the default
66+
DatePicker behavior of synchronizing the date in the DateInput and Calendar
67+
controls. This is useful for focusing the Calendar control on a date different from
68+
the DateInput one.
69+
70+
````ASPX
71+
<script type="text/javascript">
72+
function Opening(sender, args){
73+
args.CancelCalendarSynchronize = true;
74+
sender.Calendar.NavigateToDate([2006,12,19]);
75+
}
76+
</script>
77+
<radCln:RadDatePicker ID="RadDatePicker1" runat="server" >
78+
<ClientEvents OnPopupOpening="Opening"/>
79+
</radCln:RadDatePicker>
80+
````
5181

api/server/Telerik.Web.UI.Calendar/MonthYearPickerClientEvents.md

+37-10
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,18 @@ Gets or sets the name of the client-side event handler that is executed prior to
3333

3434
#### Remarks
3535
There can be some conditions you do want not to close the calendar popup on
36-
click over it. Then you should cancel the event either by return false; or
37-
set its argument args.CancelClose = true;
38-
<script type="text/javascript">function Closing(sender, args){ args.CancelClose = true; //or return false;}</script><radCln:RadDatePicker ID="RadDatePicker1" runat="server"> <ClientEvents OnPopupClosing="Closing"/></radCln:RadDatePicker>
39-
36+
click over it. Then you should cancel the event either by return false; or
37+
set its argument args.CancelClose = true;
38+
````ASPX
39+
<script type="text/javascript">
40+
function Closing(sender, args){
41+
args.CancelClose = true; //or return false;
42+
}
43+
</script>
44+
<radCln:RadDatePicker ID="RadDatePicker1" runat="server">
45+
<ClientEvents OnPopupClosing="Closing"/>
46+
</radCln:RadDatePicker>
47+
````
4048
### OnPopupOpening `String`
4149

4250
Gets or sets the name of the client-side event handler that is executed prior to
@@ -46,12 +54,31 @@ Gets or sets the name of the client-side event handler that is executed prior to
4654
There can be some conditions you do want not to open the calendar popup on
4755
click of the popup button. Then you should cancel the event either by return
4856
false; or set its argument args.CancelOpen = true;
49-
<script type="text/javascript">function Opening(sender, args){ args.CancelOpen = true; //or return false;}</script><radCln:RadDatePicker ID="RadDatePicker1" runat="server"> <ClientEvents OnPopupOpening="Opening"/></radCln:RadDatePicker>
50-
Set the args.CancelSynchronize = true; to override the default
51-
DatePicker behavior of synchronizing the date in the DateInput and Calendar
52-
controls. This is useful for focusing the Calendar control on a date different from
53-
the DateInput one.
54-
<script type="text/javascript">function Opening(sender, args){ args.CancelCalendarSynchronize = true; sender.Calendar.NavigateToDate([2006,12,19]);}</script><radCln:RadDatePicker ID="RadDatePicker1" runat="server" > <ClientEvents OnPopupOpening="Opening"/></radCln:RadDatePicker>
57+
````ASPX
58+
<script type="text/javascript">
59+
function Opening(sender, args){
60+
args.CancelOpen = true; //or return false;
61+
}
62+
</script>
63+
<radCln:RadDatePicker ID="RadDatePicker1" runat="server">
64+
<ClientEvents OnPopupOpening="Opening"/>
65+
</radCln:RadDatePicker>
66+
````
67+
Set the args.CancelSynchronize = true; to override the default
68+
DatePicker behavior of synchronizing the date in the DateInput and Calendar
69+
controls. This is useful for focusing the Calendar control on a date different from
70+
the DateInput one.
71+
````ASPX
72+
<script type="text/javascript">
73+
function Opening(sender, args){
74+
args.CancelCalendarSynchronize = true;
75+
sender.Calendar.NavigateToDate([2006,12,19]);
76+
}
77+
</script>
78+
<radCln:RadDatePicker ID="RadDatePicker1" runat="server">
79+
<ClientEvents OnPopupOpening="Opening"/>
80+
</radCln:RadDatePicker>
81+
````
5582

5683
### OnViewChanged `String`
5784

0 commit comments

Comments
 (0)