1. I have created a advanced module and there one controller, which has a validate method. This validate whether product already there or not.
2. Now for this I created one view file which has a form and javascript ajax call is embeded there.
3. I a…
Here is my code which is a view file in module
////////////////////////////////////////////
<?php //if(isset($_POST['search_url'])){
if(isset($_POST['search_url'])){
$murl = $_POST['search_url'];
}elseif(isset($_POST['product_url'])){
$mur…
Hi,
Here my answers
1. Is this concerning the front end or back end?
Back end
2. What is the URL you are trying to AJAX too (e.g. /products/ajax/saveProduct)
Under product module there is controller called ajax and saveProduct is method. /produ…
It is returning nothing actually. But with the time constraint I have copied the code from module.php's items method. . I will look into this later but meanwhile if I can get help from you it would be great.
Thanks
But there is an issue in a custom method...
When I add crumb it shows nothing just a ajax loader....what can be the issue?
public function listing(){
if(!uri_segment(5) && !ctype_digit(uri_segment(5))){
show_404();
}
…
I found the solution ..
Eventually I will have to load view.
I am loving it....
(Are you thinking of changing the admin panel to twitter bootstrap themes?)
$crumbs = array('module/uri' => 'labelgoeshere', 'End of Breadcrumb');
$this->fue…
Here is my class and my url -- http://myproject.local/fuel/mymodule/certs/listing/1, This is listing of all the certificates(child table) under some deal (master table). I have tried solution given by you but it's not working....
You can see in be…
Hi,
I saw people struggling for uploading pdf files with fuel cms even with codeignitor only. Here is the solution - few version of mozilla sends $_FILES['type'] as 'pdf/download' and this is the main culprit.
Solution : Change in appliction/conf…
I have resolved second issue related to jquery. Silly mistake acutally
$(".add_another").trigger('click'); instead $(".add_another").eq(<?php echo $index;?>).trigger('click');