Skip to content

Commit

Permalink
Docs builder content changes (#601)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
nikolay-nenkov authored Oct 2, 2024
1 parent 738046f commit 2e76c02
Show file tree
Hide file tree
Showing 92 changed files with 4,309 additions and 2,042 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Telerik® UI for ASP.NET AJAX Documentation Repo
publish: false
published: false
---

# Telerik® UI for ASP.NET AJAX Documentation
Expand Down
4 changes: 2 additions & 2 deletions _templates/common/wai-aria-templates.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#intro-base
#intro-base
This article demonstrates how to enable and use the WAI-ARIA support of the
#end

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

#intro-two-controls
@[template](/_templates/common/wai-aria-templates.md#intro-base) **@{control1}** and **@{control2}** controls.
#end
#end
2 changes: 1 addition & 1 deletion all-pages.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
publish: false
published: false
layout: null
---

Expand Down
2 changes: 1 addition & 1 deletion api/client/Telerik.Web.UI.RibbonBarTab.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Gets the hierarchical index inside the parent RadRibbonBar

### get_labelElement

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

#### Parameters

Expand Down
6 changes: 3 additions & 3 deletions api/client/args/Telerik.Web.UI.RibbonBarMaximizedEventArgs.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
title: Telerik.Web.UI.RibbonBarMaximizеdEventArgs
title: Telerik.Web.UI.RibbonBarMaximizedEventArgs
description: Client-side API Reference
slug: Telerik.Web.UI.RibbonBarMaximizеdEventArgs
slug: Telerik.Web.UI.RibbonBarMaximizedEventArgs
---

# Telerik.Web.UI.RibbonBarMaximizеdEventArgs


Inheritance Hierarchy

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


Methods
Expand Down
50 changes: 41 additions & 9 deletions api/server/Telerik.Web.UI.Calendar/DatePickerClientEvents.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,17 @@ Gets or sets the name of the client-side event handler that is executed prior to
There can be some conditions you do want not to close the calendar popup on
click over it. Then you should cancel the event either by return false; or
set its argument args.CancelClose = true;
<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>

````ASP.NET
<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>
````

### OnPopupOpening `String`

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

#### Remarks
There can be some conditions you do want not to open the calendar popup on
click of the popup button. Then you should cancel the event either by return
false; or set its argument args.CancelOpen = true;
<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>
Set the args.CancelSynchronize = true; to override the default
DatePicker behavior of synchronizing the date in the DateInput and Calendar
controls. This is useful for focusing the Calendar control on a date different from
the DateInput one.
<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>
click of the popup button. Then you should cancel the event either by return
false; or set its argument args.CancelOpen = true;


````ASP.NET
<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>
````

Set the args.CancelSynchronize = true; to override the default
DatePicker behavior of synchronizing the date in the DateInput and Calendar
controls. This is useful for focusing the Calendar control on a date different from
the DateInput one.

````ASP.NET
<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>
````

48 changes: 39 additions & 9 deletions api/server/Telerik.Web.UI.Calendar/DateRangePickerClientEvents.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,18 @@ Gets or sets the name of the client-side event handler that is executed prior to

#### Remarks
There can be some conditions you do want not to close the calendar popup on
click over it. Then you should cancel the event either by return false; or
set its argument args.CancelClose = true;
<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>
click over it. Then you should cancel the event either by return false; or
set its argument args.CancelClose = true;
````ASPX
<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>
````

### OnPopupOpening `String`

Expand All @@ -42,10 +51,31 @@ Gets or sets the name of the client-side event handler that is executed prior to
There can be some conditions you do want not to open the calendar popup on
click of the popup button. Then you should cancel the event either by return
false; or set its argument args.CancelOpen = true;
<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>
Set the args.CancelSynchronize = true; to override the default
DatePicker behavior of synchronizing the date in the DateInput and Calendar
controls. This is useful for focusing the Calendar control on a date different from
the DateInput one.
<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>
````ASPX
<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>
````

Set the args.CancelSynchronize = true; to override the default
DatePicker behavior of synchronizing the date in the DateInput and Calendar
controls. This is useful for focusing the Calendar control on a date different from
the DateInput one.

````ASPX
<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>
````

47 changes: 37 additions & 10 deletions api/server/Telerik.Web.UI.Calendar/MonthYearPickerClientEvents.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,18 @@ Gets or sets the name of the client-side event handler that is executed prior to

#### Remarks
There can be some conditions you do want not to close the calendar popup on
click over it. Then you should cancel the event either by return false; or
set its argument args.CancelClose = true;
<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>

click over it. Then you should cancel the event either by return false; or
set its argument args.CancelClose = true;
````ASPX
<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>
````
### OnPopupOpening `String`

Gets or sets the name of the client-side event handler that is executed prior to
Expand All @@ -46,12 +54,31 @@ Gets or sets the name of the client-side event handler that is executed prior to
There can be some conditions you do want not to open the calendar popup on
click of the popup button. Then you should cancel the event either by return
false; or set its argument args.CancelOpen = true;
<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>
Set the args.CancelSynchronize = true; to override the default
DatePicker behavior of synchronizing the date in the DateInput and Calendar
controls. This is useful for focusing the Calendar control on a date different from
the DateInput one.
<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>
````ASPX
<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>
````
Set the args.CancelSynchronize = true; to override the default
DatePicker behavior of synchronizing the date in the DateInput and Calendar
controls. This is useful for focusing the Calendar control on a date different from
the DateInput one.
````ASPX
<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>
````

### OnViewChanged `String`

Expand Down
Loading

0 comments on commit 2e76c02

Please sign in to comment.