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

Pages: [1]
1
Help for ParamQuery Pro / Re: Enable or Disable single cell
« on: January 22, 2016, 11:15:02 am »
I already solved the problem, thanks.  ;D

2
Help for ParamQuery Pro / Enable or Disable single cell
« on: January 22, 2016, 09:22:05 am »
Hi, I need your help, I want enable or disable a single select in a determinate row when I check or uncheck in a checkbox column, thanks

3
Help for ParamQuery Pro / Height of the table
« on: December 10, 2015, 12:00:39 pm »
HI, I have a problem, The table when is into of a bootstrap TAB the height of the table don't take the value that is in the properties of object and I can see only the header and footer, I hope that you can help me, thanks.
http://jsfiddle.net/6gxjb0hv/12/

4
Help for ParamQuery Pro / Re: GET DATA ON ROW
« on: September 05, 2015, 02:42:44 am »
Ahhhh... thanks, That event It's not in the documentation.

5
Help for ParamQuery Pro / Re: GET DATA ON ROW
« on: September 04, 2015, 07:20:55 am »
ownership 'SelectionModel' table is 'row' and not use the 'cell' and there is some method or event that is similar to cellkeydown? for example rowkeydown?

For now I'm using the event rowDblClick, for passing data from one table to another, but i need press ENTER key for passing the data, thanks,

Sorry for my bad english, I speak spanish. :P

6
Help for ParamQuery Pro / GET DATA ON ROW
« on: September 02, 2015, 03:23:46 am »
Hi, how are you. How I can get the data in a row when I crush the enter key above a row?

7
Hola, necesito enviar un valor por defecto a un input de tipo "select" en una columna , no se como enviarla
I'm trying paramquery pro version.

Hi, I need set defaul value to "select" when I use addRow function, thanks


Sorry to my  English bad :(.

      var pq = {};
        pq.countries = [
            { id: "CA", name: "Canada", regions: "Alberta|British Columbia|Manitoba|New Brunswick|Newfoundland|Northwest Territories|Nova Scotia|Nunavut|Ontario|Prince Edward Island|Quebec|Saskatchewan|Yukon Territory" },
            { id: "VI", name: "Virgin Islands, U.S.", regions: "St. Thomas|St. John|St. Croix" }
        ];
    objTable.colModel = [
        {title: 'Bod.', width: 40, dataType: 'string', dataIndx: 'bo'},
        {title: 'Cod.', width: 60, dataType: 'string', dataIndx: 'co'},
        {title: 'Cant', width: 40, dataType: 'integer', dataIndx: 'ca'},
        {title: 'Descripcion', width: 170, dataType: 'string', dataIndx: 'de'},
        {title: 'Iva', width: 170, dataType: 'string', dataIndx: 'iv'},
        {title: 'PU', width: 80, dataTyple: 'float', dataIndx: 'pu'},
        {title: 'Descuento', width: 80, dataType: 'float', dataIndx: 'ds'},
        {title: 'Total', width: 100, dataType: 'float', editable: false, dataIndx: 'to'},
        {title: 'vdescuento', width: 80, dataType: 'float', editable: false, dataIndx: 'vd'},
        {title: 'viva', width: 80, dataType: 'float', editable: false, dataIndx: 'vi'},
        {title : 'Tax', dataIndx : 'tax', width :200,
            editor : {
                type : 'select',
                mapIndices : {name :'tax', 'id' : 'id'},
                labelIndx : 'name',
                valueIndx : 'id',
                prepend : {'S':'Si'},
                options : pq.countries
        }},
    ];

I don't know how put here forn add default value to select
$grid.pqGrid('addRow', {rowData: {tax : '  ? ? ? ? '}});

Pages: [1]