Skip to content

Commit 04d09a8

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 3e71a67 commit 04d09a8

File tree

3 files changed

+74
-5
lines changed

3 files changed

+74
-5
lines changed

docs-aspnet/getting-started-mvc/vs-integration/new-project-wizard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This article demonstrates how to create a new Progress® Telerik® UI for
1616
To use the **Create New Project Wizard**, install the {{ site.product_long }} Extension. You can get it from:
1717

1818
* The [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=TelerikInc.TelerikASPNETMVCVSExtensions)
19-
* The {{ site.product }} [automated installer]({% slug msi_install_aspnetmvc6_aspnetmvc %})
19+
* The {{ site.product }} [automated installer]({% slug gettingstarted_aspnetmvc %})
2020
* Your [Telerik.com account](https://www.telerik.com/account/product-download?product=KENDOUIMVC)
2121

2222
## Using the Wizard

docs-aspnet/knowledge-base/reset-nuget-feed-credentials.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ res_type: kb
2121

2222
I entered wrong credentials for the private Telerik NuGet Feed. How can I reset my credentials on a Windows machine?
2323

24-
## Solution 1: Reseting The Credentials in `NuGet.config`
24+
## Solution 1: Resetting The Credentials in `NuGet.config`
2525

26-
Try reseting your credentials by using the approach suggested in the [Troubleshooting section]({% slug nuget_install_aspnetmvc6_aspnetmvc %}#after-changing-my-telerik-password-i-get-telerik-nuget-the-v2-feed-at--returned-an-unexpected-status-code-401-logon-failed-error) of the Installing with Nuget article. If the credentials are not updated, continue with [Solution 2](#solution-2-windows-credentials-manager).
26+
Try resetting your credentials by using the approach suggested in the {% if site.core %} [Troubleshooting section]({% slug nuget_install_aspnetmvc6_aspnetmvc %}#after-changing-my-telerik-password-i-get-telerik-nuget-the-v2-feed-at--returned-an-unexpected-status-code-401-logon-failed-error) {% else %} [Troubleshooting section]({% slug aspnetmvc_nuget %}#after-changing-my-telerik-password-i-get-telerik-nuget-the-v2-feed-at--returned-an-unexpected-status-code-401-logon-failed-error) {% endif %} of the Installing with Nuget article. If the credentials are not updated, continue with [Solution 2](#solution-2-windows-credentials-manager).
2727

2828
## Solution 2: Windows Credentials Manager
2929

@@ -37,6 +37,5 @@ Alternatively, use Windows Credentials Manager to remove the saved credentials:
3737
* `nuget.telerik.com`
3838
* `VSCredentials_nuget.telerik.com`
3939
![My Image](../knowledge-base/images/windows-credential-manager.png)
40-
1. Add the Telerik NuGet Feed again, and then enter the correct credentials. For more details, see the [Installing with Nuget]({% slug nuget_install_aspnetmvc6_aspnetmvc %}) article.
40+
1. Add the Telerik NuGet Feed again, and then enter the correct credentials. For more details, see the {% if site.core %} [Installing with Nuget]({% slug nuget_install_aspnetmvc6_aspnetmvc %}) {% else %} [Installing with Nuget]({% slug aspnetmvc_nuget %}) {% endif %} article.
4141
1. If desired, verify the NuGet credentials by inspecting the `NuGet.config` file located in `%AppData%\NuGet\NuGet.config`
42-

typescript/kendo.all.d.ts

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,6 +1006,76 @@ declare namespace kendo.data {
10061006
schemaMeasures(): JQueryPromise<any>;
10071007
}
10081008

1009+
class PivotDataSourceV2 extends Observable {
1010+
1011+
1012+
options: PivotDataSourceV2Options;
1013+
1014+
1015+
constructor(options?: PivotDataSourceV2Options);
1016+
1017+
1018+
axes(): any;
1019+
catalog(): string;
1020+
catalog(name: string): void;
1021+
columns(): any;
1022+
columns(val: any): void;
1023+
cube(): string;
1024+
cube(name: string): void;
1025+
discover(options: string): any;
1026+
measures(): any;
1027+
measures(val: any): void;
1028+
measuresAxis(): string;
1029+
rows(): any;
1030+
rows(val: any): void;
1031+
schemaCatalogs(): any;
1032+
schemaCubes(): any;
1033+
schemaDimensions(): any;
1034+
schemaHierarchies(dimensionName: string): any;
1035+
schemaLevels(hierarchyName: string): any;
1036+
schemaMeasures(): any;
1037+
1038+
}
1039+
1040+
interface PivotDataSourceV2Column {
1041+
expand?: boolean;
1042+
name?: string;
1043+
}
1044+
1045+
interface PivotDataSourceV2Measure {
1046+
values?: any;
1047+
axis?: string;
1048+
}
1049+
1050+
interface PivotDataSourceV2Row {
1051+
expand?: boolean;
1052+
name?: string;
1053+
}
1054+
1055+
interface PivotDataSourceV2TransportConnection {
1056+
catalog?: string;
1057+
cube?: string;
1058+
}
1059+
1060+
interface PivotDataSourceV2Transport {
1061+
discover?: any|string|Function;
1062+
connection?: PivotDataSourceV2TransportConnection;
1063+
}
1064+
1065+
interface PivotDataSourceV2Options {
1066+
name?: string;
1067+
columns?: PivotDataSourceV2Column[];
1068+
measures?: PivotDataSourceV2Measure[];
1069+
rows?: PivotDataSourceV2Row[];
1070+
transport?: PivotDataSourceV2Transport;
1071+
}
1072+
interface PivotDataSourceV2Event {
1073+
sender: PivotDataSourceV2;
1074+
preventDefault: Function;
1075+
isDefaultPrevented(): boolean;
1076+
}
1077+
1078+
10091079
interface DataSourceTransport {
10101080
create?: string | DataSourceTransportCreate | ((options: DataSourceTransportOptions) => void) | undefined;
10111081
destroy?: string | DataSourceTransportDestroy | ((options: DataSourceTransportOptions) => void) | undefined;

0 commit comments

Comments
 (0)