Syed Numan
Forum Replies Created
-
Forum: Plugins
In reply to: [Ninja Tables – Easy Data Table Builder] Sort the dateHello @danielgruppen,
You need to go to the Table Design-> Other-> Select Sorting Method, from there it is possible to sort the table either in Ascending/Descending way depending on any of the table columns. See here
However, It seems the table on the page is sorted in Ascending way.
If you still facing issues, please open a ticket here: https://wpmanageninja.com
Our support agent will assist you.Thanks
Forum: Plugins
In reply to: [Ninja Tables – Easy Data Table Builder] Read moreHello @muhammadadeel0411,
It requires custom JS and CSS to achieve this. At first, watch the instruction video-Instruction Video
Copy the necessary JS code from this Github link-https://gist.github.com/reachkamrul/3beea70d2b1ef1c822a21b874a002038 and paste this in the custom JS section of the table.
The CSS code for adding in the Custom CSS section.
span.read-less.read-less-more { color: red !important; cursor: pointer; } span.read-more.read-less-more { color: red !important; cursor: pointer; }
We recommend using our dedicated support channel any support related issue. https://wpmanageninja.com/support-tickets/
Your ticket will be answered within one hour. In the worst case, it might be twenty-four hours.
Thanks
- This reply was modified 4 years, 6 months ago by Syed Numan.
Forum: Plugins
In reply to: [Ninja Tables – Easy Data Table Builder] Clickable rowsHello @jonuk80,
Yes, Clickable entire rows are quite possible with some custom work. You need to use some Custom JS and CSS to achieve this.
Here is the JS code to add to the table’s Custom JS section.
$('tr').click( function() { }).hover( function() { $(this).toggleClass('hover'); }); $(document).on('click', 'tbody tr', function(e){ e.preventDefault(); var url = $(this).find('a').attr('href'); window.open(url, '_blank'); });
The CSS code to add to the Custom CSS section of the table.
.footable tbody tr:hover { cursor: pointer; }
We recommend using our dedicated support channel any support related issue. https://wpmanageninja.com/support-tickets/
Your ticket will be answered within one hour. In the worst case, it might be twenty-four hours.
Thanks
Forum: Plugins
In reply to: [Ninja Tables – Easy Data Table Builder] Rowspan in specific columnHello @wizetkim,
Rowspan will work in any of the columns if the data in those column rows are the same. So you can use the Rowspan in any of your columns and give the same data to those rows in which rows you want to be merged.
For more information have a look at the documentation-Rowspan in Ninja TablesWe recommend using our dedicated support channel any support related issue. https://wpmanageninja.com/support-tickets/
Your ticket will be answered within one hour. In the worst case, it might be twenty-four hours.
Thanks
Forum: Plugins
In reply to: [Ninja Tables – Easy Data Table Builder] Auto Sorting First ColumnHello fusap23,
The sorting method can be set from the Tabe Design Tab. Go to the Table Design -> Others -> on the left side, you will find the option ‘Select Sorting Method’. Where you can set the sorting depending on any of the column. There is another option available there for select Sorting Type whether Ascending Way or Descending Way. See the Screenshot
Thanks
Hello Muhammad,
This is quite possible in the Ninja Table. With Conditional Formatting from the column settings, you can highlight the entire rows on the basis of specific words.
Here is the docs regarding this you can have a look. Conditional Column Formatting
Thanks- This reply was modified 4 years, 6 months ago by Syed Numan.