Tagged Questions
0
votes
1answer
29 views
how to call a codeigniter function from jquery ajax
I'm using the jquery-datatables-editable plugin at https://code.google.com/p/jquery-datatables-editable/wiki/EditCell#Client-side_configuration with CI.I have:
<script language="javascript" ...
0
votes
3answers
34 views
CodeIgniter and AJAX form submit
I am trying to save data submitted from a form into my mysql database and and then update the div element with the last posted item prepended to the list in the div.
Right now I am only trying to get ...
0
votes
2answers
25 views
Some questions about CodeIgniter with Javascript and AJAX
Just getting into Codeigniter and I'm planning out a large application. I'm a bit confused about how CI handles JS files and AJAX requests.
I am using mod_rewrite with my project.
In a regular ...
0
votes
1answer
31 views
Remember the date selected in datepicker even after refresh
I just want to know if how can my datepicker remembered what month has been selected. For example, I choose June 1, 2013 even after refresh the month to be displayed in date picker is still June.
...
0
votes
0answers
43 views
How to use the onmouseenter and mouseleave in codeigniter
I have a small application do develop in CodeIgniter. In one view i want to have a mouse event that shows more details abut the subject in a different div When the user puts the mouse over the word ...
0
votes
1answer
40 views
codeigniter form_dropdown with onChange don't work
No error but not working:
I need to set a four order choose of sports in gym, so i have to use four dropdown, i have te retrieve the list of data from database, it's an array drom database that ...
0
votes
1answer
14 views
Codeigniter changing session value on click
Is there a way to change a session data CI on just one click, here is example
I have SRP/ENG a href button, i want when someone click on SRP to change jezik=1, and on other hand to change jezik=2 ...
0
votes
1answer
32 views
codeigniter dropdown order, value choosen on first dropdown musn't apear on 2nd one
I need to set a four order choose of sports in gym, so i have to use four dropdown, i have te retrieve the list of data from database, it's an array drom database that containe 30 disciplines when i ...
0
votes
0answers
17 views
How to make remote server project using eclipse
Ok this is the folder structure
/var/html/www <- web application all goes inside here.
trying to make a project like this
inside
/var/html/www
application
model
view
controller
js
asset
...
-1
votes
3answers
40 views
Ajax request when we click on the dropdown list element
Friends I created a drop-down list using the following code using js .
<script>
$('.menu').dropit();
</script>
<ul class="menu">
<li>
<a ...
0
votes
1answer
28 views
extent codeigniter Session expiration
I have $config['sess_expiration'] = 7200; on my config.php file, Which means that session last in 2 Hours.
By default the session is created up on user LOGIN. Now i want to last session based on ...
0
votes
3answers
57 views
jquery show/hide on each category
I am just trying to product list sidebar by product category. i want when i click a category, its show only this category product and another hide.
my jquery code
...
0
votes
3answers
51 views
passing array javascript to controller codeigniter
i having problem with passing array from view to controller. Here's the case:
VIEW
<script type="text/javascript">
function displayDet(kode,rowNo,rows){
var jsarr = new Array();
...
0
votes
0answers
32 views
Text disappears on refresh
When I run the following code, the req.responseText appears quickly in the div #ajax_msg. When the page refreshes (caused by the location.reload), the div #ajax_msg becomes empty.
JAVASCRIPT CODE:
...
2
votes
4answers
76 views
How to pass javascript array variable through jquery $.window url to codeigniter controller?
I have a list of students with a corresponding check box each. The check box value contains students id that I need to pass to my controller function. I have a javascript code that detects the check ...