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

Pages: [1] 2 3
1
Help for ParamQuery Pro / Re: text-area is behaving as a text-box
« on: April 11, 2019, 12:11:45 pm »
Hi,

   I am using 5.1 version of ParamQuery. If I try to enter more than 50 characters it starts overlapping with the left side columns and also if I change the resolution of the Grid and scroll left horizontally, data moves horizontally but the column headers remains static, this is causing misalignment of the grid.

    jsfiddle link - https://jsfiddle.net/kna0h2vs/

Thanks

2
Help for ParamQuery Pro / text-area is behaving as a text-box
« on: April 10, 2019, 12:00:12 pm »
Hi,

   I am facing issue in text-area, where it is behaving as a text-box, I have made it as a text-area in editor. Please help me out to fix this issue.

Code -  editor    :  {type:'textarea', cls:'comFilter',init:commentsfilter}

Thanks
 

3
Hi Paramquery,

Our requirement is to display two Grids into one page. (without using tab option)

Please find the attached screen shot.

Note: pqGrid version -3.4.2


4
Help for ParamQuery Pro / Re: DateTimePicker position issue.
« on: June 13, 2018, 10:33:55 am »
Hi Paramquery,

We have tried with adding css rule, still we are facing the same issue.

Note:
#If i click on the last row datetimepicker icon, it will display, while selecting the date need to scroll down at that time datetimepicker is disabling.
#I want to show the orientation(widgetPositioning) of datetimepicker on top position.

Please, refer the attached image.


5
Help for ParamQuery Pro / DateTimePicker position issue.
« on: June 12, 2018, 01:32:46 pm »
Hi ParamQuery,

We are facing issue of adjusting the position of Datetimepicker. When the datetimepicker button at the last row of the grid and even not possible to select the date, because of scroll down. 

Version:

#Pq_grid 3.4
#Bootsrtap-datetimepicker.min.js 2.0

Please, find the attachment.

6
Hi Param Query Team,

Below is the code snippet
      <li><a href="#tabs-2">Tab 2</a>
        </li>
        <li><a href="#tabs-3">Tab 3</a>
        </li>
    </ul>
    <div id="tabs-1">
        <div id="tabs-1_tab_main"  ></div>
    </div>
    <div id="tabs-2">
       <div id="tabs-2_tab_main"  ></div>
    </div>
    <div id="tabs-3"  ></div>
         <div id="tabs-3_tab_main"  ></div>
    </div>
</div>

 $(function(){
 var  colModel= [
 {title: "Checkbox Column ",minWidth: 150, align: "center",  dataIndx: "checkboxcolumn",  cb: { header: false, all: true, }, type: 'checkbox',editable:true,   dataType: 'bool',editor: false,resizable: false, sortable:false,},
 {title: "Column 1", minWidth: 130, align:"center", dataType: "float",dataIndx:"addlheatingDays",resizable:false,sortable: false,hidden:false},
 ]
 var data = [{}];
var dataModel = { 
             data:data,
                  recIndx: "",
                 location: "local",
                 };
   
    var toolBar='';
          var obj={
                         height: 502,
          width: 1354,
                 dataModel:dataModel,
                  colModel:colModel,
                  wrap: false,
                  hwrap: true,
                  resizable: false,
                  rowBorders: true,
                  sortable:false,
                  stripeRows : false,
                  numberCell: { show: true },
                  track: true, //to turn on the track changes.
                  flexHeight: false,
                  showBottom:false,
                  dragColumns: { enabled: false },
                  virtualX:false,
                  showTitle: false,
                  scrollModel: {
                      autoFit: true
                  },
                  collapsible: { on: false, collapsed: false },
                  selectionModel: { type: 'none', subtype:'incr',                     cbHeader:false, cbAll:false},
                  editModel: {
                      saveKey: $.ui.keyCode.ENTER
                  },
             
        beforeCheck:function( event, ui ) {
           
            },
            check:function( event, ui ) {
    if($( "#tabs-2_tab_main" ).pqGrid( "isDirty", { rowIndx: ui.rowIndx})){
    $("#tabs").tabs({ disabled: [0,1,2]});
            }else{
                    // $("#tabs").tabs("enable");// on load of grid,the                  //enable function is not working.
         //   $('#tabs').tabs('option', 'active');
        //$( "#tabs" ).tabs( "option", "disabled", [] );
       //$("#tabs").attr("disabled",false)
                  
                  $("#tabs").tabs({
                      activate: function (event, ui) {
                         $('#tabs').tabs('option', 'active').attr("href");
                             }//loading of grid working fine but enabling of other tabs is not working.
                  });
            }
            }
            }
       $("#tabs-2_tab_main").pqGrid(obj);   
             

});

Note- The requirement of my issue is in a grid i.e in one tab, i have one Check box column and non Checkbox Column.If any of the row is getting modified the other tabs should get disabled otherwise enabled.When we have changed the non checkbox column after that if we modify the checkbox the tabs enabling are not happening.

7
Hi Param Query Team,

I have total 8 tabs.I want to enable/disable the tabs based on checkbox.In a row after a cell is unchecked i need to enable the tabs, Inside param-query's check function if i try to use $("#tabs").tabs("enable") it is throwing error.

Uncaught Error: cannot call methods on tabs prior to initialization; attempted to call method 'enable'.
Please give me a solution regarding the above.

8
Help for ParamQuery Pro / Re: functionality for isDirty.
« on: February 05, 2018, 10:57:05 am »
Hi ParamQuery,

How to disable the clear data, when we click on delete button.

Ex:
 I have used : selectionModel: { type: 'row', mode: 'single',onTab: 'nextFocus'},
this is working for some grid, but not for all grids.
 

9
Help for ParamQuery Pro / Re: functionality for isDirty.
« on: January 29, 2018, 03:36:33 pm »
Hi ParamQuery,

Our requirement is not to providing the delete button over the rows. If user has selected the row and clicked on delete button (key board delete button) that particular row has been deleted. Then, how do I get to know the row has been deleted from that Grid, while clicking save button for the Grid.

Please, check with attached images.

10
Help for ParamQuery Pro / functionality for isDirty.
« on: January 24, 2018, 03:56:22 pm »
Hi ParamQuery,

In Grid, on load i have some data (refer image onLoadPortActivity) , i have selected the row and clicked the delete button
the respective row data has been deleted (refer image onDeletePortActivity).  How do I know, the row has been delete?

Note:
In cellSave() : how to get the Grid is 'isDirty' on delete of selected row.

Thanks,
BSOl Team

11
Help for ParamQuery Pro / Re: check box issue
« on: December 07, 2017, 06:49:40 pm »
Hi ParamQuery,


Requirement: I want to display the checkbox,drop down(select), text box and Date functionalities in single column.

Note: Using #PQGrid version 3.4.1 and Jquery version 1.12.1

Issues: I am facing issues while creation of checkbox. If it is checked/unchecked the check box event is not calling.

for reference, Please find the Image attached.

Please, give me the demo example.

Thanks,
BSOL Team

12
Help for ParamQuery Pro / check box issue
« on: December 05, 2017, 11:09:50 am »
Hi ParamQuery,

I have grid with some columns, our requirement is like, I need to show check box, drop down, text box and date functionality according to the  row selection.

For Reference: I have created one grid with column name as 'Rank'. 1st and 2nd rows are showing check box and
                      3rd and 4th rows displaying drop downs 5th and 6th displaying normal text boxes. (6th row need to show date)
                      Here facing issue with checkbox, on click  it showing check boxes, after select it disappear and displaying 'true' or 'false'
                      vales but it should display the check box.

JSFiddle URL: http://jsfiddle.net/oh5s4Lsu/ 


Thank You,
BSOL Team

   

13
Thanks

Its working fine.  ;D ;D

14
Hi ParamQuery Team,
I have two tabs whose name is 'Configuration' and 'Port Activities' and sub tabs for 'Port Activities'
is 'Port ActivitiesVoy #1' and 'Port ActivitiesVoy #2'

JSFiddel URL:  http://jsfiddle.net/z20er9mj/

Note:
In Our Project we are using:
#Using the pqGrid version 3.4.1
#For Tabs using JQuery Version v1.12.1

Requirement:
# On Change of Configuration Tab Value need to hide and show the 'Port Activities' sub tabs column. 
  Example: In Configuration Tab- If I change the value for column 'Config Property' HideAndShowRank value setted
      as 'Y' then need to hide the 'Rank' column in 'Port Activity' sub tabs (Both #1 and #2 sub tabs) 

Note:
#Configuration Tab values not able to edit in the provided js fiddle as Param query version is not compatible. As we are using 3.4.1 We are not sure where to get CDN of 3.4.1. We are giving fiddle with pq grid version 3.3.1.

Kindly help us to hide the columns under all sub tabs based on the configuration values.

Thanks and Regards,
BSOL Team

15
Hi Team,
        We are facing column hide and show issue for the grid available under sub tabs.  Let's say there are two tabs Tab "A" and Tab "B". Tab "A" is having only one grid "Grid 1" and there is no sub tabs. Tab "B" is having three sub tabs with grid name "Sub tab1 Grid1" , "Sub tab2 Grid 2" and  "Sub tab3 Grid 3".  Based on Grid1 we need to hide the data in sub tab1 grid 1 and sub tab2 grid2 and Sub tab3 grid3. But it is hiding and showing only for Sub tab1 Grid1 but not for other sub tabs.

Note: It is hiding and showing required column only when we click in any of the cell for sub tab2 grid2 and sub tab3 grid3.

Pages: [1] 2 3