简体   繁体   中英

Grails, tagLib g:remoteLink does not exist

I'm trying to add a delete-button to my edit-form but have not found anything that work and when I found that remoteLink could help me I tried that but when adding it to any form/app I always get:

"Tag [remoteLink] does not exist. "

I'm using Grails-3.2.4. Maybe I need to import something or..?

The remote* tags were deprecated and removed in Grails 3.x. You should be using javascript library for making AJAX-calls

This taglib and code was placed as external plugin. You can add it via additional dependency in build.gradle:

    compile 'org.grails.plugins:ajax-tags:1.0.0'

plugin page: https://plugins.grails.org/plugin/grails/ajax-tags

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM