如何填充可从服务器编辑的 jquery 数据表中的下拉列表
我正在使用 jquery 和 datatable.editable 插件, 我正在设法从静态变量中添加一个下拉列表,如下所示:
"aoColumns" : [
{ // CLIENT
type : 'select',
data : string_in_json_format,
submit : 'OK'
}
但是如果我使用服务器端响应,它会发回相同的响应,那么它就不起作用。 我在任何地方都找不到我的回复格式。
这就是我想要的:
"aoColumns" : [
{ // CLIENT
type : 'select',
loadurl: '/RetrieveDropdownServlet',
loadtype: 'GET',
submit : 'OK'
}
RetrieveDropdownServlet 的响应完全相同(如 firebug 所示),但下拉列表仍然为空 谢谢
I'm using jquery with datatable.editable plugin,
I'm managing to add a dropdown from static variables like this :
"aoColumns" : [
{ // CLIENT
type : 'select',
data : string_in_json_format,
submit : 'OK'
}
but if i use the server side response, which sends back the same response it doens't work.
And i can't find anywhere what should be the format of my response.
this is what i want :
"aoColumns" : [
{ // CLIENT
type : 'select',
loadurl: '/RetrieveDropdownServlet',
loadtype: 'GET',
submit : 'OK'
}
The response of RetrieveDropdownServlet is exactly the same (as shown from firebug), but still the dropdown is empty
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我发现我的 servlet 中存在问题,
我没有添加
response.setContentType("application/json");
所以这就是问题所在。well i found what was the problem
in my servlet i didn't add
response.setContentType("application/json");
so that was the problem.