Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - AntoRubens

Pages: [1]
1
Help for ParamQuery Select / Re: select created dinamic
« on: May 25, 2015, 01:13:28 pm »
Great man!
The code finished, see below.
Thanks!


   $("#funcao03").pqSelect({
      multiplePlaceholder: 'Função',
      search: false,
      maxDisplay: 1 ,
      selectallText: '' ,
      checkbox: true //adds checkbox to options   
   }).on("change", function(evt) {
      $.ajax({
         url: "/infra/clientes/listSubfuncao1.asp
         type: "post",
         data: {opcao:"subfuncao03"},
         dataType: "html",
      }).done(function(data){
         if ($("#subfuncao03").hasClass('.pq-select')){
            $("#subfuncao03").pqSelect('destroy');
         }
         $("#subfuncao03").html(data).pqSelect({
            multiplePlaceholder: 'Subfunção',
            search: false,
            maxDisplay: 1 ,
            selectallText: '',
            checkbox: true,
             width: 270
         }).pqSelect('close');
         $("#subfuncao03").pqSelect("refreshData");
      });
   }).pqSelect('close');

2
Help for ParamQuery Select / Re: select created dinamic
« on: May 25, 2015, 11:39:37 am »
Ok man!
There is light at the end of tuntel. It updates the first selection, the other not.

3
Help for ParamQuery Select / about event create( event, ui )
« on: May 25, 2015, 11:09:49 am »
I need help about use of event create:
I did understand it!

how use? where use?

Is possible use for manipulate element create dynamically, that not present in the tree DOM? or I need use the method jquery ".on" for future elements dynamically created?


 

4
Help for ParamQuery Select / Re: select created dinamic
« on: May 25, 2015, 11:00:44 am »
I try use this method, but dont fixed!

my code:

   $("#funcao03").pqSelect({
      multiplePlaceholder: 'Função',
      search: false,
      maxDisplay: 1 ,
      selectallText: '' ,
      checkbox: true   
   }).on("change", function(evt) {
      $.ajax({
         url: "/infra/clientes/listSubfuncao1.asp
         type: "post",
         data: {opcao:"subfuncao03"},
         dataType: "html",
      }).done(function(data){
         $("#subfunc3").html(data);
      });
   }).pqSelect('close');


When change (funcao03) so invoke the ajax and update second list (id #subfunc3). But it not receive or acept the pqselect, because the scond list not presente in DOM tree.


5
Help for ParamQuery Select / select created dinamic
« on: May 25, 2015, 08:06:44 am »
I have a system that when the User click an option the system dynamically updates a second list through ajax. The problem is that the second list does not receive the pqselect.

how to solve this problem. select dynamically created.

help me
Rubens

Pages: [1]