在 NativeScript 中使用 RadListView 有困难
Having a hard time using RadListView in NativeScript
这是我第一次在 Whosebug 上提问,所以我听起来可能很奇怪。请容忍我。因此,我正在使用 TypeScript 和 Angular 编写一个 NativeScript 程序。我想在 nativescript-telerik-ui 中使用 RadListView,但 quite 无法正常工作。
这是我的 app.component.ts 的样子:
import {Component} from "@angular/core";
import {RouteConfig} from "@angular/router-deprecated";
import {HTTP_PROVIDERS} from "@angular/http";
import {NS_ROUTER_DIRECTIVES, NS_ROUTER_PROVIDERS} from "nativescript-angular/router";
import {test} from "./pages/test.component";
@Component({
selector: "main",
directives: [NS_ROUTER_DIRECTIVES],
providers: [NS_ROUTER_PROVIDERS, HTTP_PROVIDERS],
template: "<page-router-outlet></page-router-outlet>"
})
@RouteConfig([
{ path: "/test", component: test, name: "test", useAsDefault: true }
])
export class AppComponent {}
这是我的 test.component.ts:
import {Component, ViewChild, ElementRef, OnInit} from "@angular/core";
import {Page} from "ui/page";
@Component({
selector: "test",
templateUrl: "pages/test.html",
styleUrls: ["pages/test-common.css", "pages/test.css"],
providers: []
})
export class test implements OnInit {
constructor(private page: Page) {}
ngOnInit() {}
}
这是我的 test.html:
<ActionBar title="RadListView"></ActionBar>
<lv:RadListView id="list-view" items="{{ items }}" xmlns='http://schemas.nativescript.org/tns.xsd' xmlns:lv='nativescript-telerik-ui/listview'>
<lv:RadListView.listViewLayout>
<lv:ListViewLinearLayout scrollDirection="Vertical"></lv:ListViewLinearLayout>
</lv:RadListView.listViewLayout>
<lv:RadListView.itemTemplate>
<label text="{{ name }}"></label>
</lv:RadListView.itemTemplate>
</lv:RadListView>
我希望能够使用变量 items[=35] 在 test.html 中操作 RadListView =] 在 test.component.ts 中。但是,无论我现在做什么都行不通。谁能在工作示例中告诉我如何做到这一点?
非常感谢。
1) .html 文件中的语法不同于 xml 文件
2) nativescript-telerik-ui 在 2.0.0-rc.1 之前,所以他们目前正在处理它你可以检查这个 link https://github.com/telerik/nativescript-ui-samples-angular/issues/1#issuecomment-225791969
3) 如果您使用的是 angular 的 Beta 版本,请检查此 link http://docs.telerik.com/devtools/nativescript-ui/Controls/Angular/getting-started
这是我第一次在 Whosebug 上提问,所以我听起来可能很奇怪。请容忍我。因此,我正在使用 TypeScript 和 Angular 编写一个 NativeScript 程序。我想在 nativescript-telerik-ui 中使用 RadListView,但 quite 无法正常工作。
这是我的 app.component.ts 的样子:
import {Component} from "@angular/core";
import {RouteConfig} from "@angular/router-deprecated";
import {HTTP_PROVIDERS} from "@angular/http";
import {NS_ROUTER_DIRECTIVES, NS_ROUTER_PROVIDERS} from "nativescript-angular/router";
import {test} from "./pages/test.component";
@Component({
selector: "main",
directives: [NS_ROUTER_DIRECTIVES],
providers: [NS_ROUTER_PROVIDERS, HTTP_PROVIDERS],
template: "<page-router-outlet></page-router-outlet>"
})
@RouteConfig([
{ path: "/test", component: test, name: "test", useAsDefault: true }
])
export class AppComponent {}
这是我的 test.component.ts:
import {Component, ViewChild, ElementRef, OnInit} from "@angular/core";
import {Page} from "ui/page";
@Component({
selector: "test",
templateUrl: "pages/test.html",
styleUrls: ["pages/test-common.css", "pages/test.css"],
providers: []
})
export class test implements OnInit {
constructor(private page: Page) {}
ngOnInit() {}
}
这是我的 test.html:
<ActionBar title="RadListView"></ActionBar>
<lv:RadListView id="list-view" items="{{ items }}" xmlns='http://schemas.nativescript.org/tns.xsd' xmlns:lv='nativescript-telerik-ui/listview'>
<lv:RadListView.listViewLayout>
<lv:ListViewLinearLayout scrollDirection="Vertical"></lv:ListViewLinearLayout>
</lv:RadListView.listViewLayout>
<lv:RadListView.itemTemplate>
<label text="{{ name }}"></label>
</lv:RadListView.itemTemplate>
</lv:RadListView>
我希望能够使用变量 items[=35] 在 test.html 中操作 RadListView =] 在 test.component.ts 中。但是,无论我现在做什么都行不通。谁能在工作示例中告诉我如何做到这一点?
非常感谢。
1) .html 文件中的语法不同于 xml 文件
2) nativescript-telerik-ui 在 2.0.0-rc.1 之前,所以他们目前正在处理它你可以检查这个 link https://github.com/telerik/nativescript-ui-samples-angular/issues/1#issuecomment-225791969
3) 如果您使用的是 angular 的 Beta 版本,请检查此 link http://docs.telerik.com/devtools/nativescript-ui/Controls/Angular/getting-started