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

Pages: [1] 2 3
1
Hello Team,

For your reference, https://screenrec.com/share/H8Vpt1GTJ7

I'm going to share this link to inform you that the issue with formula field in excel file while tagging excel data with pqgrid.

First time load data with formula field all good, but once save  the data in pqgrid and then reload excel file formula fields value gone.

Kindly look at this issue and try to response us asap.

I have attached a simple excel file in zip for further process.

2
We want to disable copy/paste from columns in pqgrid which are of select type.

3
We are using license version.
Due to our code scenario not able to create jsfiddle

5
Hello Team,

I have selected "Equity Shares 7 Member" check Image1

but when I want to change the value, by default "Equity Shares 1 Member" is selected instead of "Equity Shares 7 Member" check Image2

My query is to the selected member should be highlighted when clicking on the dropdown cell

6
Hi Paramvir,

We need to set default text in search text box, reference file attach here.

URL : https://paramquery.com/pro/demos/filter_local


7
It's working fine without freeze the row but when I have applied freeze for first three rows its not working fine except first column.

Please check my attached screen shot and give me a solution.

8
Hi Paramvir,

I have attached two screen shot here.

First one, Display the selection of cell

Second one, After selection of cell while user scroll the page.

I have used below code but it will raised an issue while press the enter after reach the last cell at UI level.

scroll: function () {
                    this.quitEditMode();
                }

So, Need a solution without using above code.

9
Hi Paramvir,

We need to remove autocomplete text from date-picker textbox

please advise us.

10
Help for ParamQuery Pro / Date format issue in your demo URL
« on: June 13, 2022, 07:14:41 pm »
Hi Paramvir,

We have used your demo link ( https://paramquery.com/pro/demos/editors_conditional ) and make a below link,

https://jsfiddle.net/vogd7ykb/

We have just add one field "Testing" and set type:"textbox"

When we enter text data in that field, its working fine but when we enter numeric value its automatically converted into date format


One more things, We need to set "dd-mm-yy" date format.


Kindly assist us as soon as possible

11
For your reference screenshot attached,

We are facing the issue to setup the item in dropdown list.

We have two requirements,
1)   Need to disable some item for selection
2)   Need some extra space in the item hierarchy-wise

12
Provide a demo where I can disable of selection of item from dropdown based on the logic

13
We have a scenario to bind Id as a value and Name as a Field  in dropdown

Could you provide us a demo for that?

Id=1 Field='India'
Id=2 Field='Us'
Id=3 Field='Australia'

When We select India from dropdown then prompt the message, You have selected 1 Id

14
Thanks for your revert with demo.

One more things we need from your side.

Could you give us a demo where columns generated dynamically with different-different datatype of cell with respect to the columns?

We have multiple scenario to generate the columns in gird.

I have attached some scenario as a sample here.

15
Hi Team,

Your updation like,
=========================================
Editor (v8.4.0)
In previous versions, custom editors could be created in column.type callback.

In current version (v8.4.0), column.type callback is reserved for specifying the type of editor only. Specifically ui.$cell is undefined inside the editor.type callback.

Rather column.init callback can be used for creating custom editors.
=================================================

Our code like below,

editor: {
                            type: function (ui) {
                                var ControlTypeId = ui.rowData["ControlTypeID"];
                                var IsAbstract = ui.rowData["IsAbstract"];
                                var ElementType = ui.rowData["ElementType"];
                                var ElementID = ui.rowData["id"];

                                if (ControlTypeId == "2" && ElementType == "xbrli:booleanItemType") {
                                    var str = "";
                                    str = "<select class='pq-editor-focus  pq-cell-editor' name='Name' style='min-width: 245px; max-width: 722px; max-height: 319px; width: 245px;'>";
                                    str += "<option value='Yes'>Yes</option>";
                                    str += "<option value='No'>No</option>";
                                    str += "</select>";
                                    ui.$cell.append(str);  // Issue with this line=============================================
                                }
                                if (ElementType == "xbrli:dateItemType") {
                                var $cell = ui.$cell,
                                        rowData = ui.rowData,
                                        dataIndx = ui.dataIndx,
                                        cls = ui.cls,

                                        dc = $.trim(rowData[dataIndx]);
                                        ui.$cell.css('padding', '0'); // Issue with this line=============================================
                                }
}
++++++++++++++++++++++++++++++++

We are not able to understand what should we have to put instead of "ui.$cell.append(str); " code for dropdown and "ui.$cell.css('padding', '0');" for Datepicker

Kindly give us a demo so we can implement ASAP

Pages: [1] 2 3