问题标签 [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.
javascript - 在 js-GRID 中编辑之前如何获取行值
在 js-GRID 中,我希望在编辑行(editTemplate)期间获取该行的初始值,然后再获取新行的初始值。特定的 js-GRID 列是一个文本字段。
这是我的代码,但到目前为止,但在我的警报中,我什么也没得到。
请问有什么帮助吗?
file-upload - jsgrid 需要上传和显示图像的功能
我正在使用 jsGrid 来显示数据库中的数据。但我遇到了一个问题。
所有文本字段或选择字段都正确呈现。但是我需要添加一个自定义字段,该字段具有在编辑时添加图像(当没有添加图像时)一行并在使用 jsGrid 加载页面时在字段上显示图像的功能。我搜索了网络,但没有找到任何解决方案来解决我的问题。
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.
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:
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.
javascript - JSGrid根据真假值添加图标而不是文本
我正在尝试根据 JSGrid 中的值是真还是假来添加图标(锁)。
我有一个名为 SoftLock 的变量,如果这是真的,我想在网格上插入一个锁定图标。
我有以下字段,但不确定如何继续:
我没有运气使用格式化程序。另外,如果为真,如何显示图标,如果为假,则不显示。
任何帮助,将不胜感激。
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?
jsgrid - 只读文本字段将在编辑模式下显示一个框
当我进入编辑模式时,我的只读文本字段会显示一个输入框,即使它无法进行任何编辑。
是否可以不显示该框,因为它会误导用户?
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代码)
我的理解是,在演示示例中,使用的数据源是代码中的“客户端”数组。
我错过了什么?
php - 试图将数据从mysql加载到jsgrid
我刚开始学习ajax
。
在这里,我试图从 mysql 中的一个简单表(名称详细信息(名称,年龄))加载数据jsgrid
。
我有两个 2 文件 1) index.php
2)hello.php
在同一个文件夹中
index.php
:
hello.php
main.js
hello.php
显示来自数据库的完美数据输出,但是index.php
没有数据加载到jsgrid
它显示not found
请帮忙。提前致谢。
json - 尝试使用 JsGrid MVC 从 JSON 加载数据
我从 JSON 加载数据时遇到问题,当我将 JSON 分配给 JsGrid 的属性“数据”时,在表中找不到数据。我正在使用 Ajax 检索数据。
接下来是 JsGrid 代码。
有解决这个问题的想法吗?