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

Pages: [1] 2 3 ... 12
1
Here's a simple example: https://jsfiddle.net/uftvsqc6/

Can you update the columns selector to just show "Rank".


2
Help for ParamQuery Pro / Re: editorKeyPress - get current textfield value
« on: December 05, 2024, 06:09:00 pm »
thank you. Yes that is what I need to do. How would I reference the $editor in the function?

function MgrSearch(mgrSearch) {

            var data = { 'searchVal': mgrSearch }

            $.ajax({
                type: "POST",
                data: JSON.stringify(data),
                contentType: "application/json; charset=utf-8",
                url: "Services.aspx/SearchManager",
                success: function (data) {
                         Manager = data.d.split(",")

                         $editor.autocomplete('source', Manager);
          }
}

3
Help for ParamQuery Pro / Re: editorKeyPress - get current textfield value
« on: November 27, 2024, 03:31:46 am »
thank you.

I saw that example but I need to make an ajax call on every keypress to build the editor array, since the array will change on every keypress.
I'm able to do that, but am not able to rebind the array to the editor.  see my ????? below.



                editorKeyPress: function (evt, ui) {
                    if (ui.dataIndx === 'mgr') {
                        mgrSearch = evt.originalEvent.target.value;
                        charC = (evt.charCode || evt.keyCode),
                        chr = String.fromCharCode(charC);
                        mgrSearch += chr
                        MgrSearch(mgrSearch);
                    }
                }


function MgrSearch(mgrSearch) {

            var data = { 'searchVal': mgrSearch }

            $.ajax({
                type: "POST",
                data: JSON.stringify(data),
                contentType: "application/json; charset=utf-8",
                url: "Services.aspx/SearchManager",
                success: function (data) {
                         Manager = data.d.split(",")

                         //????????????????????????????????????????????????? how can I bind the Manager array at this point?
                         autoCompleteEditor(Manager) //this does not work
          }
}


function autoCompleteEditor(source) {
            return function (ui) {
                ui.$cell.addClass('ui-front');//so that dropdown remains with input.

                //initialize the editor
                ui.$editor.autocomplete({
                    //appendTo: ui.$cell, //for grid in maximized state.
                    source: source,
                    position: {
                        collision: 'flipfit',
                        within: ui.$editor.closest(".pq-grid")
                    },
                    selectItem: { on: true }, //custom option
                    highlightText: { on: true }, //custom option
                    minLength: 0
                }).focus(function () {
                    //open the autocomplete upon focus
                    $(this).autocomplete("search", "");
                });
            }
        }

4
Help for ParamQuery Pro / editorKeyPress - get current textfield value
« on: November 26, 2024, 03:06:21 am »
How to I get the current value from the grid cell using editorKeyPress?
I need to get the cell value, then make an ajax call with this value to return an array that will be used to populate the autoCompleteEditor.

editorKeyPress: function(evt, ui) {
   if (ui.dataIndx === 'my column name') {
 
       //how to I get the value in the text field?

  }



5
Help for ParamQuery Pro / Re: select vs autocomplete editor
« on: November 14, 2024, 08:13:55 pm »
thank you. this works well. 1 issue though. the available values section that pops up appears underneath the cell. If the row/cell is at the bottom of the grid/screen, the popup is cut off.
Is there a way to move the popup up in this scenario?

6
Hello, are you able to update the JS Fiddle below (https://jsfiddle.net/hp79mu2j/) ?
Also including another picture of how the tab color seems opposite.

7
Thanks.
-Can you update https://jsfiddle.net/hp79mu2j/ so that the "Fields Selected" tab in the column header filter is hidden. We only want to show the filter tab.
-Is there a way to change the tab color? It seems like the wrong tab is white (see image).


8
How can I update the filter so that only the values that are filtered are checked?

Why is Project2 checked?
https://jsfiddle.net/dwzyem3q/

9
Help for ParamQuery Pro / Re: Issue with setting row height
« on: October 17, 2024, 05:06:40 pm »
thank you. Is there any way to get the icon in the middle of the cell? It seems like there is always an extra space, either top or bottom, and adjusting the valign and/or rowHt doesnt address it.

10
Help for ParamQuery Pro / Re: Issue with setting row height
« on: October 17, 2024, 12:25:26 am »
Can you update the row Height in this simple example so that there is no extra vertical space? When I try to adjust the row height to remove the extra space at the bottom of the icon, it ends up clipping off the top of the icon.

https://jsfiddle.net/vhaLqg6m/

11
Sorry, to clarify, "rollup" should be hidden when expanded and the only column visible when collapsed.

12
The first column in my column group is a calculated column and I only want it to display when the column is collapsed.
Can you add the Javascript to this file so that the column "rollup" is hidden when the group is collapsed?

https://jsfiddle.net/ftjhrqum/

13
Help for ParamQuery Pro / Re: select vs autocomplete editor
« on: October 02, 2024, 06:42:56 pm »
the grid column is an "Actions" column, with values like "view user details" and "view project details". Once the action (like "view project details") is selected from the list, and performed (like popping up a modal window to show details),  the cell should no longer show that value. So, if the user wants to select "view project details" again, they can do so, and the last selection isn't still listed.

14
Thank you. Can you update the button click in what I've tried?
https://jsfiddle.net/mkb0xevh/


15
Help for ParamQuery Pro / Re: select vs autocomplete editor
« on: September 25, 2024, 05:01:11 pm »
thank you. that worked. lastly, how would I clear this grid cell after the selected item was found

editor: {
                            type: "textbox",
                            init: function(ui) {
                                var $inp = ui.$cell.find("input");

                                //initialize the editor
                                $inp.autocomplete({
                                    source: (ui.dataIndx == "books" ? books : "/pro/demos/getCountries"),
                                    selectItem: {
                                        on: true
                                    },
                                }).focus(function() {
                                    //open the autocomplete upon focus               
                                    $(this).autocomplete("search", "");
                                })
                                ui.$editor.on('autocompleteselect', function(event, ui) {
                                    alert(ui.item.label)
                                   
                                    //clear grid cell

                                })
                            }
                        },

Pages: [1] 2 3 ... 12