I have un-checked the link to original content on the title field in the view (cleared the cache) and it still generates links. Also any other pointers to docs would be appreciated.

Thanks,

Comments

aspilicious’s picture

Category: support » feature

This actually is a feature request. I tried to create a patch to add a option to the override url settings but I encountered some nasty problems while doing that.

Will talk to TimPlunkett about this when we both have some time left.

aspilicious’s picture

Ok we talked about this, we are not going to fix this soon. You can disable click with custom jquery code. I don't have any docs available. Will leave this open as feature request but don't count on it.

tim.plunkett’s picture

Title: How do I disable links to origanal content » Disable links to original content
Version: 7.x-2.0-alpha6 » 7.x-2.x-dev
Status: Active » Postponed

There is a lot of functionality built around these being clickable, sorry.
jQuery is probably your best option.

tim.plunkett’s picture

Assigned: Unassigned » aspilicious
Status: Postponed » Reviewed & tested by the community
Drupal.fullCalendar.registerOptions('myModule', {
  eventClick: function(events) {
    return false;
  }
});

We need to document JS snippets like this. Another page in the handbook I guess?

aspilicious’s picture

Yeah it should be in the api section, we need more detailled docs on this... But the example is a start

EDIT: no this example is prety cool, hmm I'll add this to the faq... (and the api)

aspilicious’s picture

Status: Reviewed & tested by the community » Fixed

Ok added to the FAQ, api will come later.
http://drupal.org/node/1327018

We should have a section in the js api how you can load your custom js file into a module...
Anyway I think this is fixed

tim.plunkett’s picture

I moved it to http://drupal.org/node/1342772. If anyone has ideas for snippets, let me know.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.