问题标签 [ng-admin]
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.
ng-admin - ng-admin 添加一个“创建”按钮,该按钮具有基于过滤器的默认值
我有一个列表视图和一个过滤器。假设用户通过引用对象过滤。他看到没有找到记录,我想让他创建一个新记录,但使用从过滤器中选择的值作为新记录的初始值。
不知道怎么弄,谢谢
ng-admin - 保存后重新加载 ng-admin 实体
我得到了一个具有 2 个属性 x 和 y 的实体,每次保存后 y 在服务器端计算,问题出在 ui 中,编辑 x 并单击保存时,y 值在服务器上发生更改,但更改未反映在客户端。
有没有办法告诉 ng-admin 重新加载整个实体?
ng-admin - 具有派生显示字段的引用类型字段
在 ng-admin 中,我可以添加类型字段reference
并显示name
引用实体的
是否可以显示被引用实体的派生字段,比如说name (id)
?
我尝试使用.template()
没有运气。
javascript - 在 ng-admin 中使用 angular.js 路由
我有以下问题:我正在使用 ng-admin 来构建管理页面。ng-admin 界面添加了一个自定义页面。标准的 ng-admin 页面由 ng-admin 路由,列表/编辑视图没有问题。现在我想为自定义页面使用 angular.js 路由,因为我需要在 url 中带有参数的 url 路由。如果我不在 url 中使用任何参数,路由确实有效。一旦我使用了参数,自定义页面的路由确实可以工作,但是当我单击任何其他页面时,新页面将永远加载并且不会打开。如果我使用不带参数的路由,所有页面都会正确加载。
这是有效的:
这不起作用:
我使用 $state.go 函数来更改状态并路由页面:
angularjs - Building a multipart form with ng-admin to post an attribute and file data to the server
Using ng-admin, how can you build a creation view form with two fields: a name, and a file?
The file field type lets you easily select a file as part of a form, but it immediately posts it to an endpoint that you configure. That endpoint returns the created filename, which you can then refer to when you submit the form.
This strategy doesn't work for me. I need ng-admin to let me select a file, enter a name for the file, and then submit both pieces of data as a multipart encoded POST when I submit the form.
I think this might be possible with some clever uses of custom Angular directives, but I'm not sure about the right way to go about it. Any ideas?
angularjs - Ng-admin:如何制作实体的自定义模板 listView?
我尝试制作自定义模板listView,例如:
和 listTemplate.html 模板,我从 ng-admin 的源代码中复制:
但是当我在浏览器上打开时它只显示空列表,因为自定义 listView 模板无法获取 listController 实例。谁能帮我 ?
ng-admin - 引用许多字段 [ng-admin]
我想在一个reference-many中显示两个目标字段
有什么建议吗?
angularjs - 如何使用 ng-admin 解析一个简单的数组
我有一个返回 json 结构的 API(http://localhost:5000/v2/_catalog),如下所示:
现在我想用 ng-admin 解析结果。我的admin.js
(CORS 在我的网络服务器上解决)如下所示:
如何做到这一点?
下面更新
抱歉,我省略了文件,index.html
因为我认为很明显要提及:
问题还是一样的。该数组未正确解析,我在文档中找不到如何使用给定的 json 实现这一点。
angularjs - 使用自定义指令上传 excel 的 AngularJS 问题
我正在使用 ng-admin 并创建了一个自定义指令(按照此示例http://plnkr.co/edit/rYC3nd7undqJz2mr8Old)上传一个 excel 表,当我上传文件时,我收到以下 TypeError:无法设置属性'未定义的 columnDefs',我的代码
模块:
控制器
指示:
我正在调用指令的模板
ng-admin - ng-admin - Displaying form validation errors from the server
Sorry if this is documented somewhere but I haven't been able to find it. Is there a way to specify field errors after a create/update fails validation on the server? Does ng-admin have any features to highlight the fields with errors? Should I format my error response in a specific way?
EDIT: Should mention that I've already configured error display through app.errorMessage(), just wondering if there's additional form field highlighting features.