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 - sam.shah

Pages: [1]
1
Thanks for quick response.
Now, it hides my control which is on top of the grid.
is it possible to change this behavior so it doesn't hide my top control?

2
Is it possible/any option to set pqgrid in a maximized state by default?
When I click on ui-icon to maximize, it hides footer.

3
Help for ParamQuery Pro / Error message positioned on bottom of grid
« on: June 08, 2018, 05:26:39 am »
  Validation message display on the bottom of the grid.

Below is my code:-=
=====================================================




<link href="~/Content/bootstrap.min.css" rel="stylesheet" />
    <script src="~/Scripts/bootstrap.min.js"></script>
    <script type="text/javascript">
        jQuery.fn.bootstrapBtn = jQuery.fn.button.noConflict();
        jQuery.fn.bootstrapTooltip = jQuery.fn.tooltip.noConflict();
    </script>
    <link rel='stylesheet' href='~/Scripts/pqselect.min.css' />
    <script src="~/Scripts/pqselect.min.js"></script>
    <link href="~/Content/pqgrid.dev.css" rel="stylesheet" />
    <link href="~/Content/pqgrid.ui.min.css" rel="stylesheet" />
    <link rel='stylesheet' href='~/Content/themes/office/pqgrid.css' />
    <script src="~/Scripts/pqgrid.min.js"></script>
    <script src="~/Scripts/5.1.0.1.min.js"></script>


    <script src="~/Scripts/touch-punch.min.js"></script>
    <script src="~/Scripts/jszip.min.js"></script>
    <script src="~/Scripts/filesaver.js"></script>


 var autoCompleteEditor = function (ui) {
            var $inp = ui.$cell.find("input");

            //initialize the editor
            $inp.autocomplete({
                appendTo: ui.$cell, //for grid in maximized state.
                source:  Resource,
                selectItem: { on: true }, //custom option
                highlightText: { on: true }, //custom option
                minLength: 1
            }).focus(function () {
                //open the autocomplete upon focus
                jQuery(this).autocomplete("search", "");
            });
        }

        obj = {

            rowBorders: true,
            trackModel: { on: true },
            showHeader: true,
            showFooter: true,
            resizable:true,
            scrollModel:{autoFit:true, theme:true},
            MinHeight: '800px',
            toolbar: {
                items: [
                    {
                        type: 'button',
                        icon: 'ui-icon-plus',
                        label: 'New Record',
                        listener: function () {
                            //append empty row at the end.
                            var rowData = { Id: 0 }; //empty row
                            var rowIndx = grid.addRow({ rowData: rowData, rowIndxPage: 0 });
                            grid.goToPage({ rowIndx: rowIndx });
                            grid.editFirstCellInRow({ rowIndx: rowIndx, rowIndxPage: 0 });
                        }
                    },
                    {
                        type: 'button',
                        icon: 'ui-icon-disk',
                        label: 'Save Changes',
                        cls: 'changes',
                        listener: function () {
                            saveChanges1();
                        },
                        options: { disabled: true }
                    },
                    {
                        type: 'button',
                        icon: 'ui-icon-cancel',
                        label: 'Reject Changes',
                        cls: 'changes',
                        listener: function () {
                            grid.rollback();
                            grid.history({ method: 'resetUndo' });
                        },
                        options: { disabled: true }
                    },
                    {
                        type: 'button',
                        icon: 'ui-icon-arrowreturn-1-s',
                        label: 'Undo',
                        cls: 'changes',
                        listener: function () {
                            grid.history({ method: 'undo' });
                        },
                        options: { disabled: true }
                    },
                    {
                        type: 'button',
                        icon: 'ui-icon-arrowrefresh-1-s',
                        label: 'Redo',
                        listener: function () {
                            grid.history({ method: 'redo' });
                        },
                        options: { disabled: true }
                    },
                    {
                        type: 'button',
                        label: 'Reset filters',
                        listener: function () {
                            this.reset({ filter: true });
                        }
                    },

                    {
                        type: 'button',
                        label: "Export To Excel",
                        icon: 'ui-icon-arrowthickstop-1-s',
                        listener: function () {

                            blob = this.exportData({
                                format: 'xlsx',
                                render: true
                            });
                            if (typeof blob === "string") {
                                blob = new Blob([blob]);
                            }
                            saveAs(blob, "RCCP-MasterData-Pack" + Today + ".xlsx");
                        }
                    }
                ]
            },

            filterModel: { on: true, mode: "AND", header: true },
            editor: { type: 'textbox', style: 'border-radius:5px;' },
            title: "<b>" + "Pack Master Data Editing</b>",
            history: function (evt, ui) {
                var jQuerytb = this.toolbar();
                if (ui.canUndo != null) {
                    jQuery("button.changes", jQuerytb).button("option", { disabled: !ui.canUndo });
                }
                if (ui.canRedo != null) {
                    jQuery("button:contains('Redo')", jQuerytb).button("option", "disabled", !ui.canRedo);
                }
                jQuery("button:contains('Undo')", jQuerytb)
                    .button("option", { label: 'Undo (' + ui.num_undo + ')' });
                jQuery("button:contains('Redo')", jQuerytb)
                    .button("option", { label: 'Redo (' + ui.num_redo + ')' });
            },
           numberCell: { show: false },
            colModel: [
                { title: "Id", dataType: "int", dataIndx: "Id", editable: false, width: 40 },
                {
                    title: "Product Code",
                    width: 105,
                    dataType: "string",
                    dataIndx: "ProductCode",
                    editable: true,
                    filter: { type: "textbox", condition: 'begin', listener: 'keyup' },
                    validations: [
                        { type: 'minLen', value: 6, msg: "Required" }
                    ]
                },
                {
                    title: "Product Desc",
                    width: 350,
                    dataType: "string",
                    align: "left",
                    dataIndx: "ProductDesc",
                    editable: false,
                    cls:"readonly",
                    filter: { type: "textbox", condition: 'begin', listener: 'keyup' },

                },
                {
                    title: "Primary Line",
                    rowHt: 10,
                    width: 80,
                    rowHtHead: 35,
                    dataType: "string",
                    align: "left",
                    dataIndx: "PrimaryLine",
                    editable: true,
                    editor: {
                        type: "textbox",
                        init: autoCompleteEditor
                    },
                    filter: { type: "textbox", condition: 'begin', listener: 'keyup' },
                    validations: [
                       
                        { type: 'minLen', value: 1, msg: "Required" },
                       
                        { type: function (ui) {
                                var value = ui.value,
                                    _found = false;
                                //remote validation
                                //debugger;
                                jQuery.ajax({
                                    url: CheckResource,
                                    data: { 'Pline': value},
                                    async: false,
                                    success: function (response) {
                                        if (response == "true") {
                                            _found = true;
                                        }
                                    }
                                });
                                if (!_found) {
                                    ui.msg = value + "of PrimaryLine not found in list";
                                    return false;
                                   
                                }
                            }
                        },
                        {
                            type: function (ui) {
                                var value = ui.value,
                                    _found = false;
                                var Pcode = ui.rowData.ProductCode;
                                var Id = ui.rowData.Id;
                                if (Id == 0)
                                {
                                jQuery.ajax({
                                    url: GetDuplicateRecord,
                                    data: { 'ProductCode': Pcode, 'WcName': value, 'Type': TypeToGet },
                                    async: false,
                                    success: function (response) {
                                        if (response == "true") {
                                            _found = true;
                                        }
                                    }
                                });
                                if (_found) {

                                    swal("Can't insert duplicate Product Code " + Pcode);
                                    jQuery("#grid_editingPack").pqGrid("rollback");
                                    jQuery("#grid_editingPack").pqGrid("refreshDataAndView");

                                }
                             }
                            }
                        }
                    ]

                },

                {
                    title: "Bags per Ctn",
                    width: 95,
                    align: "right",
                    dataType: "int",
                    dataIndx: "BagsperCtn",
                    editable: false,
                    cls:"readonly",


                },
                {
                    title: "Business Area",
                    width: 95,
                    dataType: "string",
                    dataIndx: "BusinessArea",
                    editable: false,
                    cls:"readonly",
                    filter: { type: "textbox", condition: 'begin', listener: 'keyup' }
                },
                {
                    title: "Bag Rate",
                    width: 70,
                    dataType: "int",
                    align: "right",
                    dataIndx: "BagRate",
                    editable: true,

                    editor: {
                        type: "textbox"
                    }


                },
                {
                    title: "Daily Change Over",
                    width: 95,
                    dataType: "int",
                    align: "right",
                    dataIndx: "DailyChangeOver",
                    editable: true,
                    editor: {
                        type: "textbox"
                    }

                },
                {
                    title: "Weekly Change Over",
                    width: 95,
                    dataType: "int",
                    align: "right",
                    dataIndx: "WeeklyChnageOverTime",
                    editor: {
                        type: "textbox"
                    }


                },
                {
                    title: "Utilization",
                    width: 70,
                    dataType: "float",
                    align: "right",
                    dataIndx: "Utilization",
                    editor: {
                        type: "textbox"
                    }


                },

                {
                    title: "",
                    maxWidth:20,
                    editable: false,
                    sortable: false,
                    render: function (ui) {
                        return "<button type='button' class='delete_btn'>X</button>";
                    },
                    postRender: function (ui) {
                        var rowIndx = ui.rowIndx,
                            grid = this,
                            $cell = grid.getCell(ui);

                        $cell.find("button").button({ icons: { primary: 'ui-icon-scissors' } })
                            .bind("click",
                            function () {

                                grid.addClass({ rowIndx: ui.rowIndx, cls: 'pq-row-delete' });

                                var ans = window.confirm("Are you sure to delete row No " +
                                    (rowIndx + 1) +
                                    "?");
                                grid.removeClass({ rowIndx: rowIndx, cls: 'pq-row-delete' });
                                if (ans) {
                                    grid.deleteRow({ rowIndx: rowIndx });
                                }
                            });
                    }
                }
            ],

            postRenderInterval: -1, //call postRender synchronously.
            pageModel: { type: "local", rPP: 20 },
            //create: function () {
            //    this.widget().pqTooltip();
            //},
            dataModel: {
                dataType: "JSON",
                location: "remote",
                recIndx: "Id",
                postData: { Site: Site[0], Type: TypeToGet },
                url: getUrl,

                getData: function (response) {
                    return { data: response.data };
                }
            }
        };

        grid = pq.grid("#grid_editingPack", obj);

4
Why am I getting this error in the console of chrome?

pqgrid.dev.js:4590 Uncaught ReferenceError: o is not defined
    at t.paramquery.cRefresh.onWindowResize (pqgrid.dev.js:4590)
    at dispatch (jquery-3.1.1.min.js:5207)
    at elemData.handle (jquery-3.1.1.min.js:5015)
    at Object.trigger (jquery-3.1.1.min.js:8202)
    at jquery-3.1.1.min.js:8270
    at Function.each (jquery-3.1.1.min.js:362)
    at jQuery.fn.init.each (jquery-3.1.1.min.js:157)
    at jQuery.fn.init.trigger (jquery-3.1.1.min.js:8269)
    at HTMLBodyElement.<anonymous> (pqgrid.dev.js:4479)
    at pqgrid.dev.js:218

5
Hi,
 {
                    title: "Actual Start Time", width: 150, dataType: "date", align: "center", dataIndx: "ActualStartTime", format: 'yy-mm-dd',
                    editor: {
                        type: 'textbox',
                        init: dateEditor
                    }

                }
above code render date in JSON format, I mean like this. Date\1280635200000-0400\.
how can I get date format correctly?
Do I need to convert it manually?
Thanks

6
Help for ParamQuery Pro / How to refresh data in grid
« on: March 16, 2018, 10:28:07 am »
I tried to call  grid = $("#grid_editing").pqGrid('refreshDataAndView');
which make ajax call,but with old data of parameter.
Let me explain in brief:- I have 4-dropdownlist to filter data.
After loading grid first time,I have one search button where I am calling grid = $("#grid_editing").pqGrid('refreshDataAndView');.
It's not getting latest values of parameter.
Please help me.

 $("#btnGo").click(function () {
               
                if (validateScenario() == true) {
                    StartWeek = $('#txtDate').datepick('getDate');
                    StartWeek = convert(StartWeek);
                    Site = $('#ddlSite').val();
                    console.log(Site);
                    TimePeriod = $('#ddlTimePeriod').val();
                    ScenarioName = $('#txtScenarioName').val();
                    ScenarioDesc = $('#txtScenarioDesc').val();
                    Sid = $('#Sid').val();
                    grid = $("#grid_editing").pqGrid('refreshDataAndView');
              }

7
I have implemented Remote Data validation with one column following your demo.
After updating values,I am getting this error.

Uncaught TypeError: e is not a function
    at HTMLDivElement.<anonymous> (bootstrap.min.js:6)
    at Function.each (jquery-3.1.1.min.js:362)
    at jQuery.fn.init.each (jquery-3.1.1.min.js:157)
    at jQuery.fn.init.b [as tooltip] (bootstrap.min.js:6)
    at e.cValid.n.onScrollCell (pqgrid.dev.js:665)
    at e.cValid.n.isValidCell (pqgrid.dev.js:776)
    at e.cValid.n.isValid (pqgrid.dev.js:806)
    at t.(:24852/ScenarioModeling/anonymous function).(anonymous function).l.isValid (http://localhost:24852/Scripts/pqgrid.dev.js:1597:28)
    at t.(:24852/ScenarioModeling/anonymous function).(anonymous function).l._digestNewRow (http://localhost:24852/Scripts/pqgrid.dev.js:2222:38)
    at t.(:24852/ScenarioModeling/anonymous function).(anonymous function).l._digestData (http://localhost:24852/Scripts/pqgrid.dev.js:2288:30)

8
Uncaught TypeError: g is not a constructor
    at Function.a.widget (jquery-ui-1.12.1.min.js:20)
    at pqgrid.dev.js:200
    at pqgrid.dev.js:201

ScenarioModeling:393 Uncaught TypeError: pq.grid is not a function
    at HTMLInputElement.<anonymous> (ScenarioModeling:393)
    at HTMLInputElement.dispatch (jquery-3.1.1.min.js:5207)
    at HTMLInputElement.elemData.handle (jquery-3.1.1.min.js:5015)

9
OS:- Windows 10
Browser:- Chrome  Version 64.0.3282.186 (Official Build) (64-bit)

10
Please find attached image.

11
I got it.Really confusing thing.You can download from the forum.

12
Hi, I am not able to download from top Download Menu.
It leads to Download/Buy page, but I already paid for SDK.
I have used different mail when I have purchased Licence.
Email Used during purchase:- [email protected]
My Email:- [email protected].
could you do look into this as soon as possible?
I need SDK in urgency.
Thanks

13
Hi,
I need to download SDK urgent.

Pages: [1]