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

Pages: 1 ... 4 5 [6]
76
Help for ParamQuery Pro / Re: Dependencies
« on: September 26, 2014, 07:15:56 pm »
Hi,

I have written in render callback function - but still unless you are in the column B and click this class is not getting rendered - But i am looking for is if you change value in Column A - these cells need to be grayed out before you going into the cells

  render: function (ui) {
                 var rowix = ui.rowIndx,
                 dataIndx = ui.dataIndx;
                 if ($("#medicaltable").pqGrid("isEditableCell", { rowIndx: rowix, dataIndx: dataIndx })) {
                     $grid.pqGrid("removeClass", { rowIndx: rowix, dataIndx: 'adminfeebasis', cls: 'grayClass' });
                 }
                 else {
                     $grid.pqGrid("addClass", { rowIndx: rowix, dataIndx: 'adminfeebasis', cls: 'grayClass' });
                 }
             },

77
Help for ParamQuery Pro / Re: Dependencies
« on: September 23, 2014, 11:25:41 pm »
Hi,

I tried this(below code) in one of the columns in column B - but the class is applied only when the cell is clicked ... But i want all editable cells to be grayed out when i have fundvalue as "FI" ... Any suggestions ?

editable: function (ui) {
                 if (ui.rowData != undefined) {
                     var fundvalue = ui.rowData.funding;
                     if (fundvalue == "FI") {
                         //console.log(ui);
                         var ri = ui.rowIndx;
                        $grid.pqGrid("addClass", { rowIndx: ri, dataIndx: 'adminfeebasis', cls: 'grayClass' });
                         return false;
                     }
                     else {
                         return true;
                     }
                 }
                 else {
                     return true;
                 }

78
Help for ParamQuery Pro / Excel Copy Paste Error
« on: September 23, 2014, 08:41:10 pm »
Hi,

First time when you copy and paste multiple rows and columns it is working fine.
When you click addnewrow - and try to paste i am receivign an error

"Uncaught primary key violation"

79
Help for ParamQuery Pro / Re: Dependencies
« on: September 22, 2014, 07:54:23 pm »
Thank you , is there any css class to look Gray if editable is false ?

80
Help for ParamQuery Pro / Read Only Cells
« on: September 19, 2014, 08:31:16 pm »
Hi,

i Have column groups(A ', B) - 1 column in Group A has a radio button - if it is yes then Group B should be grayed out (Users cannot edit or enter any data) , if it is NO then it should be editable.

Is there any group/column property to set the editable property or anything for the above mentioned requirement?


81
Help for ParamQuery Pro / Re: pqgrid not loading v2.2.0
« on: September 17, 2014, 05:23:11 am »
I got this working

82
Help for ParamQuery Pro / Re: pqgrid not loading v2.2.0
« on: September 17, 2014, 12:07:29 am »
I tried all different possibilities , but still receiving the same error
 var grid1 = $("div#medicalgrid").pqGrid({

83
Help for ParamQuery Pro / pqgrid not loading v2.2.0
« on: September 16, 2014, 09:39:06 pm »
Hi,

I have included all files  in my header section : and trying to load pqgrid but receiving an error "undefined is not a function"  (var grid1 = $("div#medicalgrid").pqGrid)

<link rel="stylesheet"         href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/themes/base/jquery-ui.css" />
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
    <link href="~/Content/pqgrid.min.css" rel="stylesheet" />
     <script src="~/Scripts/touch-punch.min.js"></script>
    <script src="~/Scripts/pqgrid.min.js"></script>

84
Hi,

Thank You so much, I tested it in demos and looks like it is working.
Is there any evaluation version or trial version i can use to test it out will all the requirements i have at least for 2 weeks ?

Please let me know and thanks again for letting me know.

Thanks,
Roseline.

85
Ok, Thanks and is this Date for sure ?


I need to make a decision by 18th August , so if you can release this version by then - that would be great as i liked all other features in pareamquery.

86
Hi,

Thank you for the information , I was  told that this version would be released on 7/7/2014 but i see it dint ..Do you have any estimated time frame for that?

Thanks,
Roseline.

87
Hi,

I am still trying to see to figure if there is any option to this.

If you can please let me know if it is possible or not that would be really helpful for me to decide to eliminate or choose param query from the list of library choices i have to further work on my project.

Thanks,
Roseline.

88
Hi,

I am a newbie to this and trying to see if there is a feature of copying and pasting within the grid, from excel and Also Dragging feature like
Excel (when you select a cell and drag , the cells where you dragged will copy the selected cell value).

Appreciate your help on this

Thanks,
Roseline.

Pages: 1 ... 4 5 [6]