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 - emontes

Pages: [1]
1
Help for ParamQuery Pro / Re: Problem adding data
« on: June 14, 2016, 05:43:16 am »
which method can I use to get the Last Page of the Grid?

2
Help for ParamQuery Pro / Problem adding data
« on: June 11, 2016, 05:08:39 am »
I followed the example in http://paramquery.com/pro/demos/editing_instant

Everything works fine, but when I try to add an Item and is needed a new page the grid don't go to the page, in a previous post http://paramquery.com/forum/index.php?topic=1517.msg6597#msg6597 you helped me to change the remote data  paging, then in my toolbar I have:
 {
               type: 'button',
                icon: 'ui-icon-plus',
                label: 'Nuevo Tema',
                listener: function () {
                    //append empty row at the end.                           
                    var rowData = { topicname: 'nuevotema', topictext: 'Nuevo Tema' }; //empty row
                    var rowIndx = grid.addRow({ rowData: rowData });
                    grid.goToPage({ rowIndx: rowIndx });
                    grid.editFirstCellInRow({ rowIndx: rowIndx });
                }
            },

and in my dataModel,
 beforeSend: function(a, b) {
               b.url = b.url.replace("pq_curpage", "page");
            }, 

Then I supose that the problem is with the grid.goToPage. How can I make the grid to take the page ?

3
Help for ParamQuery Pro / Edit Fields in detailModel
« on: May 03, 2016, 10:54:47 pm »
In the example http://paramquery.com/pro/demos/detail Is there a way to make the Fields Editable? I mean for example to edit the "Shipping Address" field direct in the "Address" Tab

4
Help for ParamQuery Pro / How to make a Toolbar button to open an url?
« on: April 30, 2016, 06:12:37 am »
I mean, I need a button in the toolbar to open a news website,  and also In the grid a button to do something like "Show this product page"

5
Help for ParamQuery Pro / Problem with checkbox
« on: April 27, 2016, 06:23:36 pm »
I have the following definition

{ title: "Visible", dataType: "integer", dataIndx: "visible", width: 20, align: "center",
          filter: { type: 'textbox', condition: 'equal', listeners: ['change']},
          type: 'checkbox',
          cb: {
              check: "1",
              uncheck: "0"
          }, 
         },   

When an item is unchecked and I try to check it everything works fine.  But when the Item is Uncheked and I chek it, the state is stored in the database, but the item does not appears checked in the pqgrid.  Am I doing something wrong?

6
Help for ParamQuery Pro / Re: Warning Message in Delete Button
« on: April 27, 2016, 04:47:52 pm »
Yes, that was exactly what I wanted, thanks alot

7
Help for ParamQuery Pro / Warning Message in Delete Button
« on: April 27, 2016, 06:05:40 am »
Is it possible to send a warning message on pressing the Delete button In autosave?

8
Help for ParamQuery Pro / pq_curpage with other name for Apigility
« on: April 20, 2016, 06:28:12 pm »
I'm using apigility with pqGrid, but when I send the current page pqGrid send it as pq_curpage and apigility expects this parameter to be called only "page".

Is there a way to rename this pq_page to page?

Pages: [1]