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

Pages: [1]
1
Thanks for the solution.

3
Here is the jsfiddle URL  http://jsfiddle.net/mailsrikanta/LAgZx/245/


I want to change some value

When I change the value of "Srikant" to "Srikanta"

then I want to replace the content "339,938.0" to "Srikanta" by refreshing cell

Note: I added the value to database onblur event of "Srikant"

4
I used the refreshCell method after cellsave event

$grid.pqGrid("refreshCell", { rowIndx:ui.rowIndxPage, colIndx:8 } );

Bul the data not showing instantly after refresh the cell

I am making the modification in colIndex 4 need to show the data in colindx 8 instantly

5
Help for ParamQuery Pro / Re: custom time editor
« on: March 31, 2014, 01:39:08 pm »
 var colM = [
      { title: "Date", width: 150, dataType: "String", editable: false   },

        { title: "Time", width: 150, dataType: "float", align: "center",editor: timeEditor, getEditCellData: saveCell }
      ];


 var timeEditor = function (ui,e) {
           var $cell = ui.$cell, data = ui.data, rowIndx = ui.rowIndxPage, colIndx = ui.colIndx;
           var dc = $.trim(data[rowIndx][colIndx]);
           $cell.css('padding', '0');
   
           var $inp = $("<input type='text' class='date4' maxlength='5' style='padding:0px;padding-bottom: 3px;border:0;vertical-align:bottom;width:147px;text-align: center;'/>")
           .appendTo($cell)
           .val(dc).timepicker({
          
               buttonImage: "/assets/calendar.png",
               onClose: function () {
                   $inp.focus();
                   saveCell
               }
           }).attr('readonly', 'true');
            .focus();
       }

6
How can i add masking to restring invalid input like imask

7
How to save cell data on close event of datepicker

8
I dont want to hit server each time on cell editing, is there any way to save total row data to database?

Pages: [1]