Tagged Questions
0
votes
1answer
34 views
css is not working in rendering plugin when I try to render pdf file
I am using rendering plugin to make a pdf file.for this I am rendering plugin. I try t add a css file for my template but its not working. I am little bit confuse that how should I import css file in ...
2
votes
1answer
38 views
When to encode as HTML in Grails
I often see Grails sample code where the programmer has called a method called encodeAsHTML(). I figure I should probably use this in my Grails applications (for security reasons, I assume?), but I ...
0
votes
1answer
66 views
Grails render tag and message.properties
I am using the g:render grails tag to avoid to repeat common part of HTML in my app to be repeated.
Now I need in some of them to pass some properties, such as the title of the sections, through the ...
0
votes
1answer
147 views
escaping quotes in grails gsp for es
Hi guys I'm trying to escape double quotation marks in my gsp search query which is being passed into elasticsearch so far I have:
<input id="q" name="q" type="text" class="large" ...
0
votes
2answers
81 views
Update modal jquery box is not working
I had a create jquery modal box with validation and its working. But for my update jquery modal box, its not working. The bvalid isnt running the validation as I've tried to submit the form in the ...
-1
votes
1answer
95 views
Adding http:// to links causes target=“_blank” to fail
I'm trying to add a simple link to a help site to a navigation pane. Since the help site is external to the rest of the web application, I'd like to open the page in a new browser tab/window. Just add ...
0
votes
1answer
41 views
sending multiple params via email
Hi guys I'm trying do a user change password method via email and my current code is:
<html>
<body>
<p>Hello ${userInstance.user.username}, your password will be set to ...
0
votes
4answers
149 views
Jquery and AJAX sending only the first row of values
I met with some problem regarding JQUERY and AJAX. I shall post my codes first,
AJAX:
$('#edittable').live('click', function() {
$.ajax({
url: URL,
data: ...
1
vote
2answers
70 views
Add a carriage return in HTML
I need to send an email every day (in html) with the people registered in my page. Im using Grails plugin "mail" to send the email. it is sent without problems. But, the mail is sent without carriage ...
-1
votes
1answer
105 views
Retrieving values from a table cell <td> to a controller
I'm trying to get a specific value from a table cell and pass is to a controller. But it doesn't seem to be working. I show you some of my codes:
This is in the controller:
def searchUser = {
...
0
votes
1answer
304 views
Using jquery modal box and ajax to display values from cell table
I'm trying to do an UPDATE function by using Jquery modal dialog box to pass the values to the controller. However, I'm displaying my values in a HTML table box, is there a way to pass the values from ...
0
votes
1answer
58 views
Hiding label when datepicker hides
I have a filter option on a application that that allows you to pick a day "From" and "To" To help filter out events in my database. Since this isn't the only filter I have, theres a drop-down menu to ...
1
vote
2answers
97 views
It is possible to add css inside a <g:actionSubmit> tag?
I mean: I have an upload form:
<g:form method="post" enctype="multipart/form-data">
<input type="file" name="cv" id="cv" style=" max-width:120px"/>
<g:actionSubmit action="upload" ...
0
votes
2answers
218 views
How to set selected value when using g:select in grails
I'm newbie with Grails framwork.
I have issue:
I have Domain is: "Country". And I wants to show list country in select tag by using g:select in Grails
For example: The data store in database can see ...
0
votes
1answer
97 views
How to set the content of a g:textArea as HTML (formatted text, not code) in grails
I have a small grails app which I am in the middle of writing.
In one action, the show, the 'show.gsp' page is called, in which is a text area:
As shown in 'value', the value is to be some ...
0
votes
2answers
113 views
Jquery form submit blank values
I ran into some trouble when using the Jquery modal dialog box. What I'm trying to do here is to get the form submitted to the controller, however its submitting blank values after i click ok. This is ...
1
vote
2answers
148 views
Jquery refreshes and loads the page with table
I'm having some problem with my Jquery. So, the problem is that whenever i submit the form and get the tables of result. My page refreshes and is unable to load the result in the Jquery dialog box. ...
0
votes
1answer
113 views
Ajax downloaded Javascript not executing in grails
I have a layout which loads all my common resources used throughout my app but when I load a page via ajax the gsp itself renders and I can see that the ajax call downloads the js file (via firebug) ...
0
votes
1answer
56 views
Show Message Without Markup or DOM Changes
I am working through the Grails in Action book and got to the part constraints in Domain Classes to introduce validation.
When I go to the "Create" form that is produced from Grails, I just clicked ...
0
votes
1answer
105 views
Print html tags inside System Output in Grails test report
I'm trying to print the step's descriptions of my Spock specs in my grails tests reports.
I'm using print/println to make this information available in the reports.
The issue is that I want to ...
-5
votes
1answer
69 views
The CSS formatting is not apparent when we load the webpage-working in grails
code stripped down to just be a title and slogan in html (the more advanced stuff didn't work so it was dumbed down to test it but still no luck.) the CSS is just to apply to the "slogan", but doesn't ...
0
votes
1answer
76 views
AJAX isn't working in Grails
I have a GSP with the following code:
<head>
<g:javascript library="jQuery"/>
</head>
<ul id="menu">
<li>
<g:remoteLink action="ajaxRandom" ...
0
votes
2answers
102 views
Can I define a javascript variable to a grails object?
Can I assign a javascript variable to a grails object like this?
var newReport = ${report};
report is a grails domain object, which is passed back from controller to the gsp file.
Currently this ...
-1
votes
2answers
69 views
Formatting of html tables in GSP
I am using Grails and I am currently faced with this problem.
This is the result of my html table
And this is my code from the gsp page
<tr>
<th>Device ID</th>
...
-2
votes
2answers
241 views
Groovy parse html table using Grails [closed]
I have this HTML table. How do I easily scrap into row and column so I easily access the data?
<table border="0" cellpadding="4" cellspacing="0" style="width:100%">
<tr>
...
1
vote
1answer
469 views
jquery+grails, how to pass input data from a dialog into controller
I'm new to grails and jquery.
I have created a jquery dialog like this example : http://jqueryui.com/dialog/#modal-form
open a dialog, enter data, and display the data in the table on the main page.
...
2
votes
1answer
161 views
Programmatically consume html template with Groovy/Grails
I'm trying to consume a html template with a Grails app. I'm given a URL and need to dynamically load the html into my Grails views on run time. Within the HTML code there is a {title} and a {content} ...
0
votes
1answer
365 views
Grails page layout with twitter bootstrap
Hi I'm very new to twitter bootstrap. I have installed the plugin for grails and my .gsp file looks like this:
<html>
<head>
<meta name="layout" content="main"/>
...
1
vote
1answer
446 views
Grails jQuery Ajax request - URL not working
I searched the net and also here at stackoverflow, but I couldn't find any hint on this...
I've got a Grails 2.1.1 project and I want to call a Controller function from jQuery with an Ajax request. ...
1
vote
1answer
119 views
Changing the header name of pop out box
I'm not sure if this question is being asked, but I can't find any related post about this.
I actually created at pop out box after pressing a submit button so that I can create a user, however the ...
0
votes
0answers
95 views
Grails cannot handle spaces in image name
My application needs to store and display images uploaded by users, but when the image has spaces in it's name (or any character that results in a invalid url) it is not shown in the web page.
The ...
0
votes
1answer
127 views
Grails i18n messages in html tags
how i can use i18n messages in html's input tag? for example:
<input type="text" name="username" placeholder="${message(code:'placeholder.username')}"
to show placeholder text in several langs.
0
votes
1answer
461 views
Grails <textarea>, how to no-scalable?
Maybe someone can give me a hint, how to create non-scaleable textareas?
I tryed the usual stuff like :
<g:textArea name="tumble" value="myVtumble" rows="2" cols="2" />
<style>
#tumble ...
0
votes
3answers
306 views
Grails - body onload being called after script method
Not really sure what is causing this, or if it's related to Grails at all.
I have a method that I want to call on body load that goes first. Then a method in a script tag that goes second. I always ...
0
votes
2answers
733 views
Twitter-bootstrap row-fluid up to span12 only
I was working with twitter-bootstrap. I used the class row-fluid. But it seems that the maximum span for it is only 12. I tried to override it by adding span16 but it seems its not working. Is their ...
0
votes
1answer
144 views
<g:if> and <g:set>misunderstanding in grails
I have a gsp template.
And I have varialble. If this variable is true, then create an additional button, if false - do nothing.
What is wring with my code?
<g:set var="removeButton">{{ ...
0
votes
1answer
30 views
Line with a link is not shown in generated email
My app needs to send a generated email when a user asks it. The email is sent with no problem (I am using Mail plugin, in Grails)but, inside there is a line with a link that is the purpose of the ...
0
votes
0answers
93 views
Google visualization plugin loads different scripts on second call
I am using google visualization plugin, map package in one of our grails projects. It has been observed that despite sending the same data the map is generated in a different manner the second time. ...
1
vote
2answers
264 views
Using Grails to output data in columns
Given a variable amount of data, I want to create a table with fixed number of columns per row. For example, I may only want four columns per row:
<table>
<tr>
...
2
votes
2answers
777 views
Get checkbox value from grails controller
I have a grails project where I need to select the fields that I want to delete and when I click 'delete' I need a function to delete all selected items:
html code:
<form name="bookForm" ...
2
votes
4answers
125 views
how to target individual elements in grails g:render
I have created a grails g:render tag that references images representing the favorite movies, books, music, etc of a user in my project. The problem I am having is in styling the collections. I cannot ...
2
votes
2answers
143 views
Grails: JS function to change src of img is not responding
I am trying to change the src of an img under a certain condition. I know the condition returns true appropriately, because I previously wrote in an alert(). For some reason, the function is not ...
0
votes
3answers
101 views
How to format a text in html
I have a .gsp, that displays a number in the page. The problem is, i receive that number (from the server) with decimals, even if the decimal is 0. I would like to "if the last character in this ...
0
votes
0answers
242 views
Twitter bootstrap dropdown not working when change to other page?
I am adding a dropdown menu in my web page using twitter bootstrap. But the dropdown only works when I am at the homepage. When I navigate to other subpages, it doesnt work anymore. Please let me know ...
0
votes
1answer
990 views
Grails g:render a template (or render a div) onClick event
I am creating a hierarchical list with expandable/ collapsible list items. When a user clicks on a list item to expand it a table pops up with some info. Right now, grails is rendering all of the ...
0
votes
1answer
246 views
Ajax and Grails for Dummies
I am a rookie Grails user and I am completely new to AJAX. I am not exactly grasping the concept of AJAX, and the material online is fragmented.
From my understanding, in grails if I wanted to ...
0
votes
1answer
135 views
How to get the gsp file stored under grails-app/views/teamplates directory and modify it in Grails
I have created a file "_emailTemplate" in "grails-app/views/teamplates" directory.Its a html template file, The content of the file is below,
<html>
<strong>Client: ...
0
votes
2answers
120 views
Will MVC framework help me clean my web pages? [closed]
I am new to web development and have been working on my first web project using Java/JSP for some time now. For this project I decided to (probably, naively) not to use any web framework and ...
0
votes
1answer
307 views
Grails.View: Embedding pdf from resources
I have this problem embedding a .pdf file located in the folder web-app\files\[name] to the .gsp.
For example I have this file on this location:
\web-app\files\tester\test.pdf
I have this code ...
1
vote
5answers
845 views
Best way to manage a header navigation menu from within a template?
I'm looking to put navigation in my GSP template, and I would like to set the active class on the navigation elements for each respective page. What's the best way to do this? I have several .gsp ...



