php,json,laravel,laravel-4,flexigrid
What ever the coloumn it might be hide: true will do the trick. In your FlexiGrid code to display the coloumn (Probably in your view) {display: 'ID', name : 'id', width : 50, sortable : true, align: 'left', hide: true} ...
javascript,jquery,css,flexigrid
If you really dont want " " (A space) in div within td, Just try this code. $('tr:has(td > div:empty)').css("color","red"); Fiddle...
javascript,jquery,qtip2,flexigrid
When you are updating the content inside of #tblOrder you should rebind the event handler or even easier bind the mouseenter event to #tblOrder and filter the event callback with a detailed selector. So instead of your code - use this: $('#tblOrder').on('mouseenter', 'tr td a', function(event) { ...