Not sure why, but after updating the module and the library, href links are no longer displaying properly.

Screenshot: http://snpr.cm/oP8XCN.png

Comments

Ari Gold’s picture

Animelion...did you figure out a way to fix this?

bryancasler’s picture

I have not, still a problem

hongpong’s picture

Priority: Major » Normal

confirming that a typical Title field in a view renders as text, not as a link.

EDIT - i would add its odd that there is no choice for a formatter for that Title field. maybe the problem lies there right now.

bryancasler’s picture

Priority: Normal » Major

This is killing the usability of this module. Upping the status to "Major" as it has broken previously existent functionality.

sorensong’s picture

Priority: Normal » Major

This feature is crucial to my application.

Daniel A. Beilinson’s picture

Category: bug » feature
Priority: Major » Normal

Don't panic.

You can create htmlFormatter.inc in pugins/formatters folder:

<?php
/**
 * @file
 * Provides an inline cell editor
 */
// Plugin definition
$plugin = array(
  'title' => t('HTML formatter'),
  'description' => t('HTML formatter.'),
  'js' => array(
    'file' => 'slickgrid.formatters.js'
  )
);

and this simple code to slickgrid.formatters.js

var htmlFormatter = function(row, cell, value, columnDef, dataContext) {
    return value;
 }
bryancasler’s picture

Thanks Daniel, I just gave that a go but it didn't seem to work. Even flushed the cache. Nothing changed. But at least it didn't break anything.

danjuls’s picture

I can confirm that this solution works. Although Daniel forgot to mention that you have to choose the HTML formatter when editing the view under Format: Slickgrid. Set that to HTML formatter and it works perfectly.

Thanks Daniel for the soulution

henk’s picture

Adding HTML formatting works for me also.

Thanks,

kapil.ropalekar’s picture

#6 worked for me too !!!

Thanks

sskully’s picture

Issue summary: View changes

Hey guys,
I'ved added the patch, the html does have the url link, but when I click on it, it does not navigate to the page. I can command click on the link and it opens a new tap with the page.
Is there something I'm missing?

Thanks