How to change what grails puts into dropdown in f:allInterceptor in grails for CORS - GET works but not PUT, POST, DELETEgrails 3; Seeing your own data with Spring Securitygrails redirect to another viewGrails 3 change default service scopeHow to manage the role wise functionalities in grails application (custom authorization)Grails3/groovy error iterating a list where index 0 was removedGrails 3.3.9: Call controller action when checkbox is checkedScaffolding an Oracle table without an ID column in GrailspropertyName null in _widget.gsp (grails 3.3.8)Grails 3: how to show domain classes id and dateCreated with f:display (grails fields plugin)
Why can't we play rap on piano?
Examples of smooth manifolds admitting inbetween one and a continuum of complex structures
How would I stat a creature to be immune to everything but the Magic Missile spell? (just for fun)
How to show a landlord what we have in savings?
Why didn't Boeing produce its own regional jet?
Is it possible to create a QR code using text?
Cursor Replacement for Newbies
How to tell a function to use the default argument values?
Zip/Tar file compressed to larger size?
Is it acceptable for a professor to tell male students to not think that they are smarter than female students?
Plagiarism or not?
Intersection Puzzle
Is "remove commented out code" correct English?
What do you call someone who asks many questions?
How did the Super Star Destroyer Executor get destroyed exactly?
What exploit Are these user agents trying to use?
How do I deal with an unproductive colleague in a small company?
What's the in-universe reasoning behind sorcerers needing material components?
Venezuelan girlfriend wants to travel the USA to be with me. What is the process?
iPad being using in wall mount battery swollen
How can saying a song's name be a copyright violation?
Detention in 1997
How do I gain back my faith in my PhD degree?
Why would the Red Woman birth a shadow if she worshipped the Lord of the Light?
How to change what grails puts into dropdown in f:all
Interceptor in grails for CORS - GET works but not PUT, POST, DELETEgrails 3; Seeing your own data with Spring Securitygrails redirect to another viewGrails 3 change default service scopeHow to manage the role wise functionalities in grails application (custom authorization)Grails3/groovy error iterating a list where index 0 was removedGrails 3.3.9: Call controller action when checkbox is checkedScaffolding an Oracle table without an ID column in GrailspropertyName null in _widget.gsp (grails 3.3.8)Grails 3: how to show domain classes id and dateCreated with f:display (grails fields plugin)
I have a very simple project with users have accounts and accounts have transactions.
I generated the views, controllers and services using grails generate-all Transaction.
Transaction domain object looks like this:
class Transaction
Account account
BigDecimal debit = 0
BigDecimal credit = 0
static constraints =
The controller only has this:
def create()
respond new Transaction(params)
I.e. only sends a new transaction (not a list of accounts).
However, the create UI has a dropdown of all accounts in the system (not just for this user):
The question is, is there a way to "fix" to only show the users accounts? If not, I can always manually write the create view with each field hard coded. Just wondered if there was a cool grails way to do it.
See https://github.com/nutmix/grails-dropdow-air
grails3
add a comment |
I have a very simple project with users have accounts and accounts have transactions.
I generated the views, controllers and services using grails generate-all Transaction.
Transaction domain object looks like this:
class Transaction
Account account
BigDecimal debit = 0
BigDecimal credit = 0
static constraints =
The controller only has this:
def create()
respond new Transaction(params)
I.e. only sends a new transaction (not a list of accounts).
However, the create UI has a dropdown of all accounts in the system (not just for this user):
The question is, is there a way to "fix" to only show the users accounts? If not, I can always manually write the create view with each field hard coded. Just wondered if there was a cool grails way to do it.
See https://github.com/nutmix/grails-dropdow-air
grails3
add a comment |
I have a very simple project with users have accounts and accounts have transactions.
I generated the views, controllers and services using grails generate-all Transaction.
Transaction domain object looks like this:
class Transaction
Account account
BigDecimal debit = 0
BigDecimal credit = 0
static constraints =
The controller only has this:
def create()
respond new Transaction(params)
I.e. only sends a new transaction (not a list of accounts).
However, the create UI has a dropdown of all accounts in the system (not just for this user):
The question is, is there a way to "fix" to only show the users accounts? If not, I can always manually write the create view with each field hard coded. Just wondered if there was a cool grails way to do it.
See https://github.com/nutmix/grails-dropdow-air
grails3
I have a very simple project with users have accounts and accounts have transactions.
I generated the views, controllers and services using grails generate-all Transaction.
Transaction domain object looks like this:
class Transaction
Account account
BigDecimal debit = 0
BigDecimal credit = 0
static constraints =
The controller only has this:
def create()
respond new Transaction(params)
I.e. only sends a new transaction (not a list of accounts).
However, the create UI has a dropdown of all accounts in the system (not just for this user):
The question is, is there a way to "fix" to only show the users accounts? If not, I can always manually write the create view with each field hard coded. Just wondered if there was a cool grails way to do it.
See https://github.com/nutmix/grails-dropdow-air
grails3
grails3
asked Mar 8 at 22:37
John LittleJohn Little
3,72494585
3,72494585
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55071959%2fhow-to-change-what-grails-puts-into-dropdown-in-fall%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55071959%2fhow-to-change-what-grails-puts-into-dropdown-in-fall%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown