我正在使用这个 tooltip ,它是基于 jQuery 的网页,其中包含 jQGrid 元素它。
该工具提示适用于页面中的所有非 jQgrid 元素。
我试图将工具提示应用到网格的列以显示从 ajax 调用返回的特定数据,但没有成功。
工具提示设置为使用“title”关键字。
这是我用来制作网格的内容:
var myGrid = jQuery("#clients_lingots");
myGrid.jqGrid({
url:'lingots.php',
datatype: 'xml',
height:700,
mtype: 'GET',
deepempty:true ,
colNames:['Nom client'],
colModel :[
{name:'Name', index:'Name', width:1600,align:'left'},
],
rowNum:3000,
pager: '#pager_clients_lingots',
sortname: 'Name',
sortorder: 'asc',
viewrecords: true,
caption: 'Clients lingots',
....etc
在我的 lingots.php 文件中,该文件从服务器返回数据(一些 sql 查询),我放置了一个单元格
$s .= "<cell><a title='Date creation:".$datecreation."Derniere modification:'>".$qualite."</a></cell>";
,以返回类似 data.for.the.cell
认为工具提示可以工作。
我认为工具提示在检测 ajax 调用数据时出现问题。
我不知道如何解决这个问题。
有什么想法吗?
谢谢
I am using this tooltip that is jQuery based on a web page that has a jQGrid element in it.
The tooltip works fine for all the non jQgrid elements from the page.
I am trying to apply the tooltip to the columns of the grid to show specific data returned from the ajax call with no succes.
The tooltip is set to use the "title" keyword.
Here is a what i am using to make the grid:
var myGrid = jQuery("#clients_lingots");
myGrid.jqGrid({
url:'lingots.php',
datatype: 'xml',
height:700,
mtype: 'GET',
deepempty:true ,
colNames:['Nom client'],
colModel :[
{name:'Name', index:'Name', width:1600,align:'left'},
],
rowNum:3000,
pager: '#pager_clients_lingots',
sortname: 'Name',
sortorder: 'asc',
viewrecords: true,
caption: 'Clients lingots',
....etc
In my lingots.php file that returns the data from the server (some sql querys) i've put a cell like
$s .= "<cell><a title='Date creation:".$datecreation."Derniere modification:'>".$qualite."</a></cell>";
to return a cell like <a title='some info for the tooltip from db">data.for.the.cell</a>
thinking that the tooltip will work.
i think that the tooltip has a problem detecting the ajax call data.
I do not know how to fix this.
Any ideas?
thank you
请尝试使用语法。
title='来自数据库的工具提示的一些信息'
或者
title =“来自数据库的工具提示的一些信息”
如果您以“”或“”开头;检查一下。
please try with syntax.
title='some info for the tooltip from db'
or
title="some info for the tooltip from db"
if you started with '' or ""; check it.