Return to Snippet

Revision: 6072
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
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
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