Menu
  • HOME
  • TAGS

How to hide a particular coloumn in Flexigrid by Default

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} ...

Setting colours to FlexiGrid rows depending on column value or attribute href column value

javascript,jquery,css,flexigrid

If you really dont want "&nbsp" (A space) in div within td, Just try this code. $('tr:has(td > div:empty)').css("color","red"); Fiddle...

tooltips only on first page of table

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) { ...