I want to remove the "Create New" link (the one with the green '+' icon) from the top of a listing in ActiveScaffold. I tried config.create.link=false and config.list.create.link=false but they don't work. This must be terribly simple but I can't find it!
ActiveScaffold: How to remove "Create New" link from top of list page
811 Views Asked by Mike Blyth At
1
There are 1 best solutions below
Related Questions in HYPERLINK
- Hyperlink directs to hidden row
- HTML Button Link to Website from Text
- Replacing a hyperlink with an image on excel
- Retain css of links after enabling click-tracking of send-grid
- Problems with Clickable Divs in side bar
- Links with images and text - combined or separate?
- Remove Underline From HyperLinkButton XAML
- Launch a web browser or youtube using textview in android
- Can we edit hyperlink in Restrict editing mode in Word 2013?
- HTML link scroll down the page
- html <pre></pre> page layout blocks links
- Programming Externally Linked Images in Excel
- Opening link in new tab without clicking on link
- Copy and Paste Hyperlink change path to absolute
- Use window.name to open links in emails in the same tab
Related Questions in CUSTOMIZATION
- Styling the custom switch in android
- UITabBarController customisation page top bar colour swift
- Laravel 5 customizing authentication
- How to customize Kibana dashboard?
- How to customize WordPress RSS feed
- How to customize cardview?
- How to customize NavigationDrawer
- Customisable iOS Interface
- How to change on_press "animation" of Tkinter button in python
- Is it possible to create a program that changes/customizes how a user logs into their account in Windows?
- Issue with stroke in text, Android
- heightForRowAtIndexPath and customize tableviewcell height
- Show circle over back button on action bar
- Wordpress Customize Image Control Not Working
- Modifying ListView's smoothScrollToPosition transition
Related Questions in CONFIG
- R CMD recognize only some commands
- Save the state of a dynamic windows form application C#
- Where to save a gem config file?
- C# Spring context dictionary expression as a key
- disabling CONFIG_NET_DMA
- Java (Bukkit) how to acces to the Config with out this?
- How can I get the "realm" value of a SVN repository?
- Solr custom UpdateRequestProcessorFactory fails with "Error Instantiating UpdateRequestProcessorFactory"
- How do I organize input global variables?
- Why does Magento core override not register until third request?
- How to parse multi line value from config file
- Visual Studio: common and customized part in configuration file
- Provider dependancy not working in Config AngularJS
- How should I handle secret tokens for open source android projects?
- com.typesafe.config.ConfigException$Missing: No configuration setting found for key 'play'
Related Questions in ACTIVESCAFFOLD
- ActiveScaffold or ActiveRecord how to search on an associated model's column
- Is rails 4 supporting active_scaffold?
- Heroku gives error on ActiveScaffold routing "as_routes"
- date picker bridge in Rails 3 (vhochstein fork) causing permission error in Heroku
- ActiveScaffold — When inserting a new record, how to enable entry fields for a column/model to which the being created model "belongs_to"
- Ruby On Rails html5 storage offline CRUD application with or without ActiveScaffold
- How to change caption on Search button in ActiveScaffold Rails?
- Does ActiveScaffold work with Rails 3?
- Active Scaffold: config.link.inline = false is not working
- How can I specify available ActiveScaffold actions on a per-record basis?
- Rails Active Scaffold : values of column
- ActiveScaffold: How to remove "Create New" link from top of list page
- Active Scaffold How to list how many records are dynamically displayed per page in Rails 3
- ActiveScaffold thread-safety
- Displaying links on columns mapped to custom attributes
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Figured it out. Just add
to the configuration section. I had tried this already but was getting errors because of later references to "create" such as
Since create has been excluded as an action, AS does not want to see a config.create later on!