Revision: 6072
Updated Code
at April 24, 2008 14:27 by omixen
Updated Code
......
addRowProp: function()
{
$('tbody tr',g.bDiv).each
(
function ()
{
$(this).click(
function (e)
{
var obj = (e.target || e.srcElement); if (obj.href || obj.type) return true;
//disable this line below
//$(this).toggleClass('trSelected');
}
;
......
Revision: 6071
Updated Code
at April 24, 2008 14:18 by omixen
Updated Code
......
addRowProp: function()
{
$('tbody tr',g.bDiv).each
(
function ()
{
$(this).click(
function (e)
{
var obj = (e.target || e.srcElement); if (obj.href || obj.type) return true;
//disable this line below
//$(this).toggleClass('trSelected');
}
);
......
Revision: 6070
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at April 24, 2008 14:17 by omixen
Initial Code
......
addRowProp: function()
{
$('tbody tr',g.bDiv).each
(
function ()
{
$(this).click(
function (e)
{
var obj = (e.target || e.srcElement); if (obj.href || obj.type) return true; //$(this).toggleClass('trSelected');
}
);
......
Initial URL
Initial Description
Initial Title
Disable Selectable in Flexigrid
Initial Tags
Initial Language
JavaScript