问题标签 [jsgrid]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
3987 浏览

javascript - 我可以根据特定的 Select 值自动设置 js-GRID 文本字段吗?

我知道不清楚,但我给你看这张图片:

看这里

我希望在选择数据类型时根据以下内容设置 DB 数据文本字段:

数据类型——数据库数据类型

一个。字符串 - varchar(100)

湾。整数 - 整数

C。长 - Bigint

例如 :

1)当我从数据类型中选择 STRING 以便能够将 DB 数据类型文本字段设置为 varchar(100) 或

2)当我从数据类型中选择整数时,能够将 DB 数据类型文本字段设置为 int 或

3)当我从数据类型中选择 LONG 时,可以将 DB 数据类型文本字段设置为 Bigint。

我的代码如下:

这是我的 js-GRID 数据库:

0 投票
1 回答
787 浏览

javascript - 在 js-GRID 中编辑之前如何获取行值

在 js-GRID 中,我希望在编辑行(editTemplate)期间获取该行的初始值,然后再获取新行的初始值。特定的 js-GRID 列是一个文本字段。

这是我的代码,但到目前为止,但在我的警报中,我什么也没得到。

请问有什么帮助吗?

0 投票
1 回答
1968 浏览

file-upload - jsgrid 需要上传和显示图像的功能

我正在使用 jsGrid 来显示数据库中的数据。但我遇到了一个问题。

所有文本字段或选择字段都正确呈现。但是我需要添加一个自定义字段,该字段具有在编辑时添加图像(当没有添加图像时)一行并在使用 jsGrid 加载页面时在字段上显示图像的功能。我搜索了网络,但没有找到任何解决方案来解决我的问题。

0 投票
0 回答
216 浏览

jquery - CakePHP 3 and jsGrid - failed AJAX

When using jsGrid, the controller of the script uses ajax to load, add, edit and delete data. However, currently when I attempt to add data, it fails to save to the database, and the grid shows up as blank.

jsGrid initial

This screenshot is my initial jsGrid when I start a new line in the jsGrid and enter some data.

When I click the green + button, the data is saved to the jsGrid, and no data is saved to the mySQL database.

This is my jsGrid script:

$host.$basepath are two variables set in the AppController which refer to my host and the base of my project respectively. resource_id as an input is to ensure the foreign key to the Resources table is filled in.

The controller portion of the script comes from the PHP sample of jsGrid.

When I do an Inspect console, my console.log of the item being added is as follows:

jsGrid Add item inspect

I do have AJAX already implemented in my config/routes.php, as per this page in the CakePHP 3 Cookbook:

And my AppController already has Request Handler in the initialize function, as per this page, which is passed down to all other controllers:

Update: I've removed the return from the ajax which fixes the saving and updating to jsGrid errors, however still none of the Ajax callbacks work.

0 投票
2 回答
1428 浏览

javascript - JSGrid根据真假值添加图标而不是文本

我正在尝试根据 JSGrid 中的值是真还是假来添加图标(锁)。

我有一个名为 SoftLock 的变量,如果这是真的,我想在网格上插入一个锁定图标。

我有以下字段,但不确定如何继续:

我没有运气使用格式化程序。另外,如果为真,如何显示图标,如果为假,则不显示。

任何帮助,将不胜感激。

0 投票
2 回答
4790 浏览

javascript - JSGrid - Load JSON data - "Not Found"

I have a problem populating a jsgrid from with JSON data and I have scaled down the code to a very minimal implementation but it is still not working. I can see in the Chrome debugger that the REST call returns data on this format

{data: [{ "Name":"MyAccount"}]}

Anyone who can see what is wrong?

0 投票
2 回答
1920 浏览

jsgrid - 只读文本字段将在编辑模式下显示一个框

当我进入编辑模式时,我的只读文本字段会显示一个输入框,即使它无法进行任何编辑。

是否可以不显示该框,因为它会误导用户?

0 投票
0 回答
1196 浏览

jsgrid - 如何开始使用 jsGrid

我刚刚发现了 jsGrid 并开始使用“ http://js-grid.com/demos/ ”上的“基本场景”示例。这是在我遵循“ http://js-grid.com/getting-started/ ”的入门之后。

为了进行测试,我最终得到了下面的 html 和 js 文件。问题,没有任何工作。

我无法像在演示中那样显示“基本场景”表。

谁能展示我缺少的东西?

这是我的理解: 1. 下载 jsgris js 和 css 文件 - 我做了这个 2. 你必须有 html 和 div "" - 我做了这个 3. 需要 js 代码来创建 jsgrid 对象 - 我做了这个,(见我的js代码)

我的理解是,在演示示例中,使用的数据源是代码中的“客户端”数组。

我错过了什么?

0 投票
0 回答
1832 浏览

php - 试图将数据从mysql加载到jsgrid

我刚开始学习ajax

在这里,我试图从 mysql 中的一个简单表(名称详细信息(名称,年龄))加载数据jsgrid

我有两个 2 文件 1) index.php2)hello.php在同一个文件夹中

index.php

hello.php

main.js

hello.php显示来自数据库的完美数据输出,但是index.php没有数据加载到jsgrid它显示not found

请帮忙。提前致谢。

0 投票
1 回答
624 浏览

json - 尝试使用 JsGrid MVC 从 JSON 加载数据

我从 JSON 加载数据时遇到问题,当我将 JSON 分配给 JsGrid 的属性“数据”时,在表中找不到数据。我正在使用 Ajax 检索数据。

接下来是 JsGrid 代码。

有解决这个问题的想法吗?