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

Pages: [1]
1
Help for ParamQuery Pro / Re: grid option get curPage is always "1"
« on: July 13, 2015, 11:51:40 pm »
I think document need to be update, it said dataModel.curPage instead of pageModel.

 Get or set the pageModel > curPage option, after initialization:
   
//getter
var curPage=$( ".selector" ).pqGrid( "option", "dataModel.curPage" );
 
//setter
$( ".selector" ).pqGrid( "option", "pageModel.curPage", 2 );

2
Help for ParamQuery Pro / grid option get curPage is always "1"
« on: July 13, 2015, 02:08:18 am »
some reason get pqgrid option curPage  is always "1"

3
Tried image to upload png, jpg  and size below 100kb also no luck - unable to upload gave error tried few times.

var vendorsList = function (ui) {
                var $inp = ui.$cell.find("select"),
                $grid = $(this);
                $inp.change(function ()
                {
                    var vendor = this.value;
                    getVendorInfo(companyid, vendor);
                });
                //initialize the editor
                // $inp.css('z-index', '999999');
                $inp.select2({
                   dropdownAutoWidth: true
                });
            }

var colM = [
{
                dataIndx: "vendorno", title: "Vendor", width: 200,
                editor: {
                    type: "select",
                    prepend: { "": "" },
                    mapIndices: { name: "vendorno", id: "vid" },
                    labelIndx: "vname",
                    valueIndx: "vid",
                    options: function (ui) {
                        var comps = pq.companies,
                            id = ui.rowData.coid;
                        var venders = pq.vendors;

                        if (id) {
                            var found_names = $.grep(pq.vendors, function (v) {
                                return v.coid === id;
                            });
                            return found_names;
                        }
                        return [];
                    },
                    init:vendorsList
                },



4
Help for ParamQuery Pro / Re: pqGrid - Column Show Images
« on: February 25, 2015, 12:44:36 am »
Great!
Thank you this would work.

5
Help for ParamQuery Pro / pqGrid - Column Show Images
« on: February 24, 2015, 10:57:55 am »
Hi Param,
I want to know how to implement image in pqGrid, please see attached data grid we are currently using and trying to convert into pqGrid
we have bought your professional version.

6
Help for ParamQuery Pro / Re: Date Picket is over lapped with Grid
« on: January 31, 2015, 10:22:53 pm »
You rock.


7
Help for ParamQuery Pro / Date Picket is over lapped with Grid
« on: January 31, 2015, 04:21:13 am »
Please see attached, date picker is not showed correct - scroll bars are overlapped
my be z-index issue ?

Pages: [1]