I came to this plugin some time ago and have never bookmark it. I was hoping someone could know his name or link me
The plugin is for the table and it allows you to expand on each row within the table. So if you click on the "View" button in the table row, the table opens on that row and there will be some content displayed below the line you click. The key is that all this is placed in the table and all columns of the table are not in the content section below the table row.
This is not a plugin (I think).
Actually you can access such functionality with very simple code for example:
& lt; Table & gt; & Lt; Tbody & gt; & Lt; TR & gt; & Lt; TD & gt; Some content & lt; Div class = "hidden-content" style = "display: none" & gt; Some hidden content & lt; / Div & gt; & Lt; / TD & gt; & Lt; TD & gt; & Lt; A href = "#" class = "display-hiding" & gt; View & lt; / Div & gt; & Lt; / TD & gt; & Lt; / TR & gt; & Lt; / Tbody & gt; & Lt; / Table & gt; The extension script will then be:
& lt; Script type = "text / javascript" & gt; $ ('Display-hidden'). Click (function () {$ (this) .Parent (). ('Div.hidden-content') SlideToggle ('sharp');}) and Lt; / Script & gt; No plugins required.
Comments
Post a Comment