-
Posts
4,868 -
Joined
-
Last visited
-
Days Won
390
Everything posted by Blesta Addons
-
[Plugin] Support Manger Addons (Add Widget/badge)
Blesta Addons replied to Blesta Addons's topic in The Marketplace
this addons for core support manager . support manager pro of PauloV is already has this feature . -
Can you try change the price fr blesta directly . you get the same error?
-
i found the probleme , the probleme is coming from the client_services_manage.pdt in client template . the $tabs is outside the WidgetClient , for this reason , in ajax request it put the whole pdt file inside the WidgetClient . i think this should not be from the begin be as this . normally the $tabs and $tab_view should be all inside the rendered widget , like the admin side . the normal code should be something like <?php echo $this->Html->ifSet($message); $this->WidgetClient->clear(); $this->WidgetClient->create($this->_("ClientServices.manage.boxtitle_manage", true, $this->Html->ifSet($package->name), $this->Html->ifSet($service->name)), array('id'=>"client_services_manage"), $this->Html->ifSet($render_section, null)); $this->WidgetClient->startBody(); ?> <div class="col-md-3"> <?php echo $this->Html->ifSet($tabs);?> </div> <div class="col-md-9"> <?php if ($this->Html->ifSet($tab_view)) { echo $tab_view; } else { echo $this->Html->ifSet($service_infobox); } ?> </div> <?php $this->WidgetClient->endBody(); $this->WidgetClient->end(); ?> the same thing for client_services_addons.pdt .just it need some tweaks of css design to look better . @Tyson, @Paul , what do you think ?
-
the screenshoot of the output http://host-image.net/v.php?id=93253pagination.png the ajax request lod the full content and just the tab output .
-
i have fixed this issue , this was my mistake , i'm using Blesta.pagination_client in the admin tab also . so i have fixed this issue with using Blesta.pagination . now in the client side , the first page of pagination show correctly , but when i click page 2 , it load the full column to the box "panel_content" <div class="col-md-3">...</div> <div class="col-md-9">...</div> so i get the left nav loaded also . i will make more reseach for this . @Tyson , is this related to "$this->get['whole_widget']" ? if yes how i can handel the pagination inthe clientg side section in module , i don't see any module yet using it until now .
-
tell him to add 3 or 4 more event
-
+1
-
Client Can View The Tabs For Suspended Services
Blesta Addons replied to Blesta Addons's topic in Bugs
my code is checking the date_suspended field is empty or not , so basically canceled service i think can access direct url ... i will try it now . EDIT : i have tested , canceled services, the client can view the tabs by direct urls , so this is not a good sceanario . @Paul , if the service has status rather than active , the client didn't and shouldn't see anything . -
good found daniello ..... the question here tyson is why in the modules Blesta use "Blesta.pagination_client" as settings instead of Blesta.pagination ? note my code in a module tab for admin , is this a bug ? EDIT , when i ovveride the setting with the cody code, the pagination has no prelink first and prev links . picture here http://host-image.net/v.php?id=33450pagination.png i almost sur now is a bug .
-
First Name + Last Name Or Company Name
Blesta Addons replied to a.daniello's topic in Feature Requests
the autocomplete is your mod or the native thing in blesta ? i don't se it in my blesta ! -
the pagination class inluded in blesta generat the build links by $this->Pagination->build(); in normal mode the generated code something like : <div class="pagination"> <ul> <li class=" disabled"><a class="ajax" href="/blesta/admin/clients/index/active/1/?sort=id_code&order=desc">← First</a></li> <li class=" disabled"><a class="ajax" href="/blesta/admin/clients/index/active/1/?sort=id_code&order=desc">Prev</a></li> <li class="active"><a class="ajax" href="/blesta/admin/clients/index/active/1/?sort=id_code&order=desc">1</a></li> <li><a class="ajax" href="/blesta/admin/clients/index/active/2/?sort=id_code&order=desc">2</a></li> <li><a class="ajax" href="/blesta/admin/clients/index/active/3/?sort=id_code&order=desc">3</a></li> <li><a class="ajax" href="/blesta/admin/clients/index/active/4/?sort=id_code&order=desc">4</a></li> <li><a class="ajax" href="/blesta/admin/clients/index/active/5/?sort=id_code&order=desc">5</a></li> <li><a class="ajax" href="/blesta/admin/clients/index/active/2/?sort=id_code&order=desc">Next</a></li> <li class="next"><a class="ajax" href="/blesta/admin/clients/index/active/104/?sort=id_code&order=desc">Last →</a></li> </ul> </div> the same code used in my module , the generated code is : <div class="pagination"> <ul class="pagination pagination-sm"> <li class=" disabled"><a class="ajax" href="/blesta/admin/clients/index/active/1/?sort=id_code&order=desc">← First</a></li> <li class=" disabled"><a class="ajax" href="/blesta/admin/clients/index/active/1/?sort=id_code&order=desc">Prev</a></li> <li class="active"><a class="ajax" href="/blesta/admin/clients/index/active/1/?sort=id_code&order=desc">1</a></li> <li><a class="ajax" href="/blesta/admin/clients/index/active/2/?sort=id_code&order=desc">2</a></li> <li><a class="ajax" href="/blesta/admin/clients/index/active/3/?sort=id_code&order=desc">3</a></li> <li><a class="ajax" href="/blesta/admin/clients/index/active/4/?sort=id_code&order=desc">4</a></li> <li><a class="ajax" href="/blesta/admin/clients/index/active/5/?sort=id_code&order=desc">5</a></li> <li><a class="ajax" href="/blesta/admin/clients/index/active/2/?sort=id_code&order=desc">Next</a></li> <li class="next"><a class="ajax" href="/blesta/admin/clients/index/active/104/?sort=id_code&order=desc">Last →</a></li> </ul> </div> as you see the only deffirence is the class added to the UL tag . <ul class="pagination pagination-sm"> my question from where this class is comming and why ? how blesta checkthe attribute of the html tags in pagination ? NOTE : this is note a big probleme, is only a design matter here .
-
what will be new in 3.5 ?
-
Ok to well explain my need , i want to change my tab module of reinstall a VM in proxmox , what i need exactly when i send a reinstall command to xx/x/tabsreinstall/install/ i want to affich a loading image this image will be shown until the install proccess is completed . how i can check the install is completed ? proxmox has a ticket request system , until the ticket request "xxxxxxxxxx" is in running mode so the install is not completed , when this ticket is stopped the install is completed . i have already implement a backgourd for this in activating new VM and is working like a charm . now i want to show the backround proccess . any one thanks a lot for this jquery code , i have got a idea now, i will try it this night . if success i will change the install code in my preoxmox module and releasing the first beta
-
i will try it , not sure if it feet my need . as what i need is simple but is complicated with tabs in module , maybe in plugin will work like a charm .
-
this code is sending a request to a file, and grab the returned data . the probleme here is replacing the tab with the new content . but i will look at it .
-
i need a auto refrech .
-
I have successufully added the pagination helper to a module . The only probleme i have is that the pagination UL tag has a class that i don't know from where is comming ! <ul class="pagination pagination-sm">.... </ul> Any idea for this ? Note i use the same code in plugins and is not generating a class for the UL Tag.
-
Hello . Is thier any qick tip or methode to reload module tab content every x seconds with ajax request ? Any tip or help will save me some hours of searching and testing .
-
Hello paul , we can't make package to don't belong to groups or to temporarily unassign them in editing mode .
-
already requested , and exist a task in jira for this , but i don't have the ID for it .
-
so is a confirmed bug
-
+1 , i have made a test and i see the benifict for this request .
-
this bug is just in updating package , and saving the first time .
-
Client Can View The Tabs For Suspended Services
Blesta Addons replied to Blesta Addons's topic in Bugs
another one plus , thanks for your vote . i have posted a fix for this in this post ,for those won't wait until the blesta staff add thier own fix . -
Package Name Being Twice On Same Line At Order Summary
Blesta Addons replied to serge's topic in Bugs
when i have tried to reproduce the bug , i have discovered a new bug : ) http://www.blesta.com/forums/index.php?/topic/4014-group-membership-in-package-in-updating/