gpt4 book ai didi

aurelia - 在 Aurelia 中使用 jQWidgets

转载 作者:行者123 更新时间:2023-12-02 03:06:36 26 4
gpt4 key购买 nike

我想在 Aurelia 项目中使用 jqxGrid 小部件,但我不确定如何调整他们的示例(如下)以在 Aurelia View / View 模型组件中工作。

看它运行here .

<!DOCTYPE html>
<html lang="en">
<head>
<title id='Description'>This example shows how to create a Grid from Array data.</title>
<link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" />
<script type="text/javascript" src="../../scripts/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxdata.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxmenu.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxgrid.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxgrid.selection.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxgrid.columnsresize.js"></script>
<script type="text/javascript" src="../../scripts/demos.js"></script>
<script type="text/javascript">
$(document).ready(function () {
// prepare the data
var data = new Array();
var firstNames =
[
"Andrew", "Nancy", "Shelley", "Regina", "Yoshi", "Antoni", "Mayumi", "Ian", "Peter", "Lars", "Petra", "Martin", "Sven", "Elio", "Beate", "Cheryl", "Michael", "Guylene"
];
var lastNames =
[
"Fuller", "Davolio", "Burke", "Murphy", "Nagase", "Saavedra", "Ohno", "Devling", "Wilson", "Peterson", "Winkler", "Bein", "Petersen", "Rossi", "Vileid", "Saylor", "Bjorn", "Nodier"
];
var productNames =
[
"Black Tea", "Green Tea", "Caffe Espresso", "Doubleshot Espresso", "Caffe Latte", "White Chocolate Mocha", "Cramel Latte", "Caffe Americano", "Cappuccino", "Espresso Truffle", "Espresso con Panna", "Peppermint Mocha Twist"
];
var priceValues =
[
"2.25", "1.5", "3.0", "3.3", "4.5", "3.6", "3.8", "2.5", "5.0", "1.75", "3.25", "4.0"
];
for (var i = 0; i < 200; i++) {
var row = {};
var productindex = Math.floor(Math.random() * productNames.length);
var price = parseFloat(priceValues[productindex]);
var quantity = 1 + Math.round(Math.random() * 10);
row["firstname"] = firstNames[Math.floor(Math.random() * firstNames.length)];
row["lastname"] = lastNames[Math.floor(Math.random() * lastNames.length)];
row["productname"] = productNames[productindex];
row["price"] = price;
row["quantity"] = quantity;
row["total"] = price * quantity;
data[i] = row;
}
var source =
{
localdata: data,
datatype: "array",
datafields:
[
{ name: 'firstname', type: 'string' },
{ name: 'lastname', type: 'string' },
{ name: 'productname', type: 'string' },
{ name: 'quantity', type: 'number' },
{ name: 'price', type: 'number' },
{ name: 'total', type: 'number' }
]
};
var dataAdapter = new $.jqx.dataAdapter(source);

$("#jqxgrid").jqxGrid(
{
width: 850,
source: dataAdapter,
columnsresize: true,
columns: [
{ text: 'Name', datafield: 'firstname', width: 120 },
{ text: 'Last Name', datafield: 'lastname', width: 120 },
{ text: 'Product', datafield: 'productname', width: 180 },
{ text: 'Quantity', datafield: 'quantity', width: 80, cellsalign: 'right' },
{ text: 'Unit Price', datafield: 'price', width: 90, cellsalign: 'right', cellsformat: 'c2' },
{ text: 'Total', datafield: 'total', cellsalign: 'right', cellsformat: 'c2' }
]
});
});
</script>
</head>
<body class='default'>
<div id='jqxWidget'>
<div id="jqxgrid">
</div>
</div>
</body>
</html>

根据上面的例子,一切都是通过 HTML 脚本标签完成的,这在 Aurelia Views 中使用的 HTML 模板元素中似乎不起作用。我假设我必须使用 JSPM 将所需的 jqwidgets 文件导入到 View 模型中,但我一点也不知道该怎么做。

谁能帮我弄清楚如何将上面的示例代码连接到 Aurelia 组件中? (如果有帮助,我有一个空的、可编辑的 Aurelia 项目框架在此处运行 https://gist.run/?id=6f38a1211eeecafe74c4dd4c960fc2d6&sha=d9959ac0f4d7ad9f3c8385b7b78f648adfc91e11)。

最佳答案

我已经创建了一个基于 aurelia-skeleton-navigation 的示例应用程序,您可以找到这个 here .让我引导您完成相关步骤。

首先你需要安装jqwidgets:jspm install jqwidgets=github:jqwidgets/jQWidgets

确保您已经安装了 JSPM 的 css还有插件:jspm install css .

app.html我们可以加载 jqwidgets 的 CSS 部分:<require from="jqwidgets/jqwidgets/styles/jqx.base.css!"></require> .请注意末尾的感叹号,它指示 SystemJS 使用 css 加载 css 文件。插入。这个

然后你可以创建一个 my-grid通过创建两个文件自定义元素:my-grid.htmlmy-grid.js .

my-grid.html 看起来像这样:

<template>
<div ref="container"></div>
</template>

在这里您可以看到 ref属性,这是特定于 Aurelia 的代码,它将创建一个名为 container 的属性在 View 模型 (my-grid.js) 上,包含对 div 的引用元素。这非常方便,因为我们可以使用此引用来初始化网格,而无需使用 jQuery。

创建 my-grid.js 需要更多工作

import 'jquery';
import 'jqwidgets/jqwidgets/jqxcore';
import 'jqwidgets/jqwidgets/jqxdata';
import 'jqwidgets/jqwidgets/jqxbuttons';
import 'jqwidgets/jqwidgets/jqxscrollbar';
import 'jqwidgets/jqwidgets/jqxmenu';
import 'jqwidgets/jqwidgets/jqxgrid';
import 'jqwidgets/jqwidgets/jqxgrid.aggregates';
import 'jqwidgets/jqwidgets/jqxgrid.columnsreorder';
import 'jqwidgets/jqwidgets/jqxgrid.columnsresize';
import 'jqwidgets/jqwidgets/jqxgrid.edit';
import 'jqwidgets/jqwidgets/jqxgrid.export';
import 'jqwidgets/jqwidgets/jqxgrid.filter';
import 'jqwidgets/jqwidgets/jqxgrid.grouping';
import 'jqwidgets/jqwidgets/jqxgrid.pager';
import 'jqwidgets/jqwidgets/jqxgrid.selection';
import 'jqwidgets/jqwidgets/jqxgrid.sort';
import 'jqwidgets/jqwidgets/jqxgrid.storage';
import {bindable} from 'aurelia-framework';

export class MyGridCustomElement {
@bindable gridData;

attached() {
let source = {
localdata: this.gridData,
datatype: 'array',
datafields:
[
{ name: 'firstname', type: 'string' },
{ name: 'lastname', type: 'string' },
{ name: 'productname', type: 'string' },
{ name: 'quantity', type: 'number' },
{ name: 'price', type: 'number' },
{ name: 'total', type: 'number' }
]
};

let dataAdapter = new $.jqx.dataAdapter(source);

$(this.container).jqxGrid({
width: 850,
source: dataAdapter,
columnsresize: true,
columns: [
{ text: 'Name', datafield: 'firstname', width: 120 },
{ text: 'Last Name', datafield: 'lastname', width: 120 },
{ text: 'Product', datafield: 'productname', width: 180 },
{ text: 'Quantity', datafield: 'quantity', width: 80, cellsalign: 'right' },
{ text: 'Unit Price', datafield: 'price', width: 90, cellsalign: 'right', cellsformat: 'c2' },
{ text: 'Total', datafield: 'total', cellsalign: 'right', cellsformat: 'c2' }
]
});
}
}

这里发生了一些事情。首先,在命名类时使用 Aurelia 的命名约定 MyGridCustomElement ,我们可以将此自定义元素与 <my-grid> 一起使用.

您看到的另一件事是大量的 import声明。这将拉入 jqxgrid 的所有部分。我们需要告诉 JSPM 将这些模块加载为 Global ,因为 JSPM 会尝试将它们加载为 AMD,但这是行不通的。

因为我们想将数据传递给 <my-grid>自定义元素,我们需要设置一个可以绑定(bind)的属性。这可以通过用 @bindable 装饰 a 来完成。装饰器。

建议从 attached() 初始化 jQuery 组件生命周期回调。在 my-grid.html我们添加了 ref="container"属性,它允许我们使用 container 从 View 模型初始化网格属性:$(this.container).jqxGrid({ .

此时<my-grid>自定义元素已设置,我们可以开始使用它了。

在任何 View 中,我都选择在 welcome.html 中执行此操作查看,以下将允许您使用 <my-grid>自定义元素:

<template>
<require from="./my-grid"></require>

<my-grid grid-data.bind="data"></my-grid>
</template>

<require>标签将拉入我们的自定义元素,以便我们可以从该 View 中使用它。我们现在想将一些数据传递给这个自定义元素。在 my-grid.js我们申报了属性(property)@bindable这是 gridData属性(property)。在这里我们必须将它转换为 kebab-case ( gridData -> grid-data )。我们数据绑定(bind) gridData属性(property)给data welcome.js 中存在的属性文件。

此时我们应该完成了,尽管我们需要指示 JSPM 使用全局模块格式加载 jqxgrid(因为它不能使用默认的 AMD 格式正确加载)。您可以在 config.js 中看到必要的配置.

关于aurelia - 在 Aurelia 中使用 jQWidgets,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42383455/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com