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

Pages: [1] 2
1
News / Re: Upgrade to Pro Version 3.3.0
« on: June 23, 2016, 07:31:41 pm »
Hi,

I would like to renew for the latest version.

Please let me know the process to proceed.

Thanks

2
News / Re: Upgrade to Pro Version 3.3.1
« on: June 22, 2016, 07:38:45 pm »
I would like to upgrade to the new version. Can you please provide me help in how to renew the license? The last i renewed was in 2014.

Thanks
Soumya

3
That worked thank you very much. Was so simple may be i should have figured out myself :).

4
Master Grid with Detail grid and columnTemplate on Master Grid destroys Expand button .

When i inspect the arrow element this is what i see <td class="pq-grid-cell pq-cell-select ui-state-highlight" pq-col-indx="0" tabindex="0">[object Object]</td>

I am suppose to see <div class="ui-icon ui-icon-triangle-1-e"></div> in the place of [object Object].

This started happening once i set the columnTemplate: { render: commentRender }, in Master Grid Object.

Please see the attached screen shot for more in detail.

5
That worked. The button has to be initialized as well in the grid pqgridrefresh event.

Thanks for the help

6
I don't need the delete button as we are not doing any deletions on the records. The user can only for do update on the record.

7
Yes i did . And so the update button shows up atleast once i click the Edit

render: function (ui)
                 {
                     return "<button type='button' class='edit_btn'>Edit</button>";
                 }

Attached the picture.

8
length is 0 and it says undefined

9
Hi,

I am following the pro demo for in line editing.

i have the below code for editrow

 function editRow(rowIndx, $gridMain)
            {
                //debugger;
                $gridMain.pqGrid("addClass", { rowIndx: rowIndx, cls: 'pq-row-edit' });
                $gridMain.pqGrid("editFirstCellInRow", { rowIndx: rowIndx });

                //change edit button to update button and delete to cancel.
                var $tr = $gridMain.pqGrid("getRow", { rowIndx: rowIndx }),
                    $btn = $tr.find("button.edit_btn");
             
                $btn.button("option", { label: "Update", "icons": { primary: "ui-icon-check" } })
                    .unbind("click")
                    .click(function (evt)
                    {
                        evt.preventDefault();
                        return update(rowIndx, $gridMain);
                    });

                $btn.next().button("option", { label: "Cancel", "icons": { primary: "ui-icon-cancel" } })
                .unbind("click")
                .click(function (evt)
                {
                    $gridMain.pqGrid("quitEditMode")
                        .pqGrid("removeClass", { rowIndx: rowIndx, cls: 'pq-row-edit' })
                        .pqGrid("rollback");
                });

             
            }

for some reason I can only Update button and not the cancel button in the row.
can you guide if i am missing something here.

10
Bug Report / Re: Detail grid with tabs and first tab doesn't expand
« on: January 13, 2015, 08:24:03 pm »
Thank you

11
Looks like the fix doesn't work on Local data.
My inner grid dataModel location is local.

12
Any update on inner grid Records per page dropdown on Firefox bug

Please see the attachment for more details.

13
Bug Report / Detail grid with tabs and first tab doesn't expand
« on: December 20, 2014, 02:06:52 am »
Detail Grid with tabs and the first tab doesn't expand on expanding the arrow to expand. It expands when revisiting first tab after visiting another tab.

I have the code

 $detail.find(".pq-tabs").tabs().on("tabsactivate", function (evt, ui)
                    {
                        $contactsgrid.pqGrid("refreshView");
                        if (ui.newPanel.is("#contacts")) {
                            $contactsgrid.pqGrid("refresh");
                        }
                        if (ui.newPanel.is("#holdings")) {
                            $holdingsgrid.pqGrid("refresh");
                        }
                        if (ui.newPanel.is("#comments")) {
                            $commentsgrid.pqGrid("refresh");
                        }
                        if (ui.newPanel.is("#documents")) {
                            $documentsgrid.pqGrid("refresh");
                        }
                    });

but contactsGrid doesn't expand when hit the arrow to expand .

14
Hi Param,

I have a Grid which has a grid detail in it . The inner grid has Records per page drop down and it doesn't work in Firefox. The drop down is frozen and doesn't allow the user to select number of records per page to change. I can only use Next page buttons to traverse.

Let me know your thougths.


15
Bug Report / Re: grid with Selection Mode Single has check box
« on: December 20, 2014, 01:59:12 am »
Thank you very much that solved my problem.

Pages: [1] 2