2
votes
1answer
46 views

create multiple drop down dynamically with different id using javascript

I have a select drop down with some id name. I want to make a clone of it with different Id name dynamically using javascript. here is my code. <td> <div style="float: left;"> ...
0
votes
2answers
38 views

Update database table

I am currently using grails and I am trying to figure out a way that I can update my database table utility with the two values selected from two drop down menus. My drop down menus are passed values ...
0
votes
0answers
52 views

Grails - populating 2nd and 3rd dropdowns from the 1st one

I had used before in my application to dynamically populate a second drop down box based on the value selected from the first one (using jQuery, remoteFunction call). I am not sure how to populate ...
0
votes
1answer
41 views

Need to implement confirmation box in grails

I need to implement a confirmation message box in grails when I press the stop button. The code for my stop button is <a class="stopimg" href="${createLink(controller: 'Test', action: 'Stop', id: ...
0
votes
1answer
59 views

Grails:display results in gsp

I have 3 domains classes Class Application { Candidate candidate; Vote vote; static belongsTo = [candidate:Candidate,vote:Vote] } Class Candidate { String username; static ...
0
votes
0answers
54 views

Update database from multiple drop down menus upon update button

I am currently trying to set up way to update my database table with the changed values from multiple drop down menus at once with a single update button. I have twelve drop down menus which signify ...
0
votes
2answers
105 views

How to show/hide a div based on ajax response?

Right now I have two webservices; one is my main app, and the other is returning JSON data. I am trying to show/hide a div based on a value from the JSON data that I get as a response to a post. ...
0
votes
1answer
144 views

Sprinkling in AngularJS into existing jQuery heavy application

I have a jQuery heavy application written in Grails 2.2.0. A large piece of the application is a single page app and what I've basically been doing up to this point is pulling in the required HTML ...
2
votes
2answers
61 views

Updating option from drop down menu

I am currently trying to update the value of my drop down menu with my script in my list.gsp. I am retrieving the start_time and end_time values from my controller in a JSON and trying to update my ...
0
votes
0answers
126 views

Ajax and pagination

Trying to implement ajax pagination dialecting with grails controller: 1) Ajax function to refresh the grid: function refreshGridAjax() { $("#filesContainer").find("#paginate ...
2
votes
1answer
249 views

Manually add jquery and jquery-ui to grails project

I've been coding in grails now for a couple months. They get added to the page through the main.gsp file with the following: <g:javascript library="jquery"/> <r:require ...
0
votes
1answer
51 views

Grails jquery post only working with an alert present?

So, I've got a link on a page which calls a little jQuery function, which in turn posts to a controller, the controller just runs some SQL before refreshing the page. All this works nicely, while ...
0
votes
1answer
60 views

Grails running jquery within a controller

Simple enough question but I can't find anything online to suggest how to do it... I want the controller to run a jQuery check on a simple html table on screen before it runs the update action, but I ...
1
vote
1answer
97 views

How to call Grails web service remotely from different application

I have a web service method in my Grails application which renders data in json format. def getCityListJson(){ def cityList= City.list() as JSON render cityList } which is basically a ...
0
votes
1answer
102 views

how to install jquery plugin in grails

I want to use jquery in my project. That's why I am trying to install it by the following command from intellij >>> install-plugin jquery And when command run it gives the following message >>> ...
0
votes
1answer
55 views

Grails doesn't put jquery library into HTML

I've got this in my GSP in <head> section: <g:javascript library="jquery"/> but no effect in the resulting HTML - this is the problem to be solved. jQuery plugin was installed by ...
0
votes
1answer
91 views

How to call a function to an element dynamically loaded by Ajax?

I'm trying to use the jQuery Plugin SelectBoxIt, but my content is loaded by Ajax, and I'm not getting it to work. I'm using Grails and I don't wanna put inline code, so I've tried to load it with ...
0
votes
0answers
72 views

Grails richui autocomplete for cloned textbox

I am using grails richui autocomplete field in my app. It works fine for my static textbox but when I clone the textbox this feature is not working for the cloned textboxes and it shows no error even. ...
1
vote
1answer
116 views

Render Grails template depending on JS variable

situation is: I have a javascript bool variable named status. If it is true, I want to render a Grails template. If it is false, I want to render another Grails template. My code: HTML/JS <div ...
0
votes
2answers
189 views

jQuery form not working on internet explorer

I am using jQuery form to upload files and save them into database, my code works fine in chrome and mozilla but the upload doesn't start in internet explorer; I am grails framework and my codes are ...
1
vote
1answer
120 views

Add and remove input dropdowns to a grails form

After quite a lot time trying. I decided to post a question. Here is what I'd like to do: Add and remove dropdowns from a form. Remove the chosen dropdown from the form. This means that if the user ...
0
votes
1answer
91 views

jQuery or Javascript regular expression to clean up date parameter in url

My regular expression chops are very rough and I could use a hand trying to clean up this url. It doesn't have to be a regular expression if there is an easier way to go about this. ...
0
votes
5answers
84 views

Changing post url for the application in jQuery

I have some jQuery code that looks like this: $.post("/myapp/mycontroller/save", { myObject: JSON.stringify(jsonObject) }) .done(function(data) { $("#successmsg").text(data); ...
1
vote
1answer
118 views

Grails formRemote with jQBootStrapValidator

I am working with a simple form that I am submitting via Grails < formRemote > tag. This is working fine and as expected. Recently I added jqbootstrapvalidaton.js into my project in order to add ...
1
vote
1answer
126 views

How to parse JSON in a grails controller

I'm submitting a form via jQuery and I'm sending a JSON object along with the submission. I'm doing this like so: console.log(jsonObject) $.ajax({ type: "POST", url: ...
1
vote
3answers
298 views

jquery chosen, empty String as option

I´m using chosen.js for Dropdowns in a form on a grails-environment. I want the users to be able to select an empty option, but somehow it is ignored. There must be a possibility to do this? Because ...
0
votes
0answers
122 views

How to open an overlay from g link

I am trying to open an overlay window through grails g link tag like this <g:link url="[action:'abc',controller:'xyz']" rel="#overlay" >Click here</g:link> It works fine for the first ...
1
vote
1answer
179 views

jQuery substring or regex to remove extra characters from serialized string

I'm grabbing values from a grails select tag, and need to strip out the extra characters that jQuery is grabbing and format the string before passing it off to our BIRT report server. The list from ...
0
votes
0answers
120 views

AjaxFileUpload plugin not handling Grails response status correctly

I am working with the AjaxFileUpload plugin (and jqGrid) to send a file to a grails controller. Sending the file works fine, my problem comes in when I want to send back a 500 response if the file ...
0
votes
1answer
190 views

Jquery dialog and ajax to open another dialog box

I'm facing some problems on jquery and ajax to open second dialog box within a dialog box. This is the Jquery codes: $( "#dropdownuser" ).dialog({ autoOpen: false, show: "blind", ...
0
votes
4answers
152 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: ...
0
votes
0answers
85 views

Grails and jQuery Datepicker messing CSS

I have added a jQuery Datepicker to my Grails application but it seems like it's messing the CSS because the TH and TR of the datepicker get highlighted. But I can't find the exact CSS line that it is ...
1
vote
2answers
323 views

Grails Datepicker Onchange Event

I need to use onchange event in grails datepicker,but simply using onchange event doesnot work in date picker. Here is my code: g:datePicker ...
0
votes
1answer
311 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
2answers
166 views

grails ajax works with a form and create but not with edit

I'm using grails for a traffic project. It's my first with grails! I have a domain Station with two boolean values hasroad and hasrail. In the station controller I use this method: def ...
0
votes
1answer
273 views

Grails formRemote multipart catch data onSucess

i´m just working on a foto-upload with Grails, when i use g:form everything works fine, the file gets parsed, transformed and put into session in controller and as response i render a template ...
0
votes
0answers
119 views

workaround for downloading custom text file in jquery

I have a grails controller action downloadFile that, oddly enough, I want to download a file. However, jquery can't download files (out of security concerns) my controller is as such def ...
0
votes
1answer
115 views

jquery json to be parsed by grails

I have an ajax that is successfully passing things into my controller var ids = grid.jqGrid('getGridParam','selarrrow'); if (ids.length>0) { var names = []; for (var i=0, il=ids.length; i ...
0
votes
0answers
261 views

pass data from jquery ajax to grails controller

I currently have a jqgrid that has this code, which works up until when I pass the data to the ajax post $("#getSelected").click(function(){ var ids = ...
0
votes
1answer
110 views

Access Denied in ajax load (Grails)

I want load into div "example_id" file "status.gsp". But application have access denied to file "status.gsp" $('#example_id').load('status.gsp').hide().fadeIn(3000);
0
votes
1answer
209 views

Grails create downloadable file

I call the following jQuery function in my view: $.ajax({ url: '${request.contextPath + '/Ticket/passAll'}', type: 'POST', data: Data, ...
0
votes
2answers
609 views

Grails+Jquery-ui - integration issue?

I have been trying to use grails with the jquery-ui plug-in, I have created a simple controller along with a gsp page that uses a datepicker, I have not been able to get the date picker to show a list ...
0
votes
2answers
224 views

passing in enum values into jquery grid filter

this seems really easy but have not been able to do it. Currently I have an enum: enum LocationCodes{ USA(3), Canada(4), Carribean(5), USPacific(6) NANPCodeGroup(int value) {this.value = ...
1
vote
1answer
497 views

Json as parameter to Grails controller

I am trying to pass a Json array to a Grails controller and then to a Java class. I can't figure out how to properly pass my params to the Java class though. Here is the relavent code. AJAX POST: ...
1
vote
1answer
270 views

Jquery Submit form and refreshes page

I've met into some problems with the Jquery, this are my codes from Jquery: <script> $(function() { var username = $( "#username" ), email = $( "#email" ), password = $( ...
0
votes
3answers
423 views

Download file from Ajax (sort of)

I have this ajax call in my GSP: $.ajax({ url: '${request.contextPath + '/Ticket/passAll'}', type: 'POST', data: data, success: function() { alert("Success"); } }); This ...
0
votes
2answers
124 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 ...
0
votes
0answers
163 views

Jquery + Grails

I am trying to use jquery in a grails 2.1.1 app with jquery plugin v1.8.0. My .js file is in 'web-app/js/' My view heading is <head> <g:javascript library="jquery" plugin="jquery"/> ...
0
votes
1answer
245 views

Jquery Signature Panel Plugin

I've been trying to get a signature panel to work in grails. on the client side everything looks like it works, but I have been struggling on how to get the signature saved to the database record. ...
0
votes
1answer
193 views

Load content while scrolling in Grails

guys I am simply uploading images and displaying them in gsp view .What I wanna do now is whenever I scroll down that gsp view images must load. Someone told me to do a ajax call using jquey. please ...

1 2 3 4 5