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

Pages: [1]
1
Help for ParamQuery Grid (free version) / I can not copy from the grid.
« on: February 22, 2018, 03:08:23 pm »
I can not use ctrl c / v (copy) after dragging from this part(Refer to the image). Ctrl c copies only [object object].
However, when you right-click, copying is performed.

Please let us know why ctrl c is not working.

2
thank you for your reply! Drag works normally.

And I have additional questions.
ctrl c/v(copy) after dragging is not available. Ctrl c copies only [object object].
However, copying is done after right mouse click.

Let me know why ctrl c is not working.

3
 Thank you for your reply.
https://paramquery.com/demos/detail    <--here

and Please check the image.

4
Help for ParamQuery Grid (free version) / Difference Between Demo and Pro
« on: February 06, 2018, 05:35:21 am »
Why can not drag in demo ver.?

I used css
.pq-native-select{user-select: text; -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text;}
but It does not work...

function initDetail ( ui ){
   console.log("initDetail", ui);
    var rowData = ui.rowData;
    /*html = $("#tmpl").html()*/
    html = "<div class=\"pq-native-select\" style=\"width:auto; white-space:pre-wrap;word-break:break-all; white-space:-moz-pre-wrap; word-wrap:break-word;\">";
    html += "<p>";
    html += rowData.sdContent;
    html += "</p>";
    html += "</div>";
    $detail = $("<div></div>");
    $detail.html(html);
   
    return $detail;
};

Tell me what to do.

5
Hello?
I used it like this ->
--------------jsp--------------------------------------------
<div id="grid_md" style="margin:5px auto;"></div>
--------------------------------------------------------------
--------------script-----------------------------------------
var obj = { width: 900
            , height: 578
            , editable:false
            , resizable:true
            , draggable:false
            , wrap:false
            , hwrap:false
            , showTop:false
            , numberCell: { show: false }
              , virtualX: true
              , virtualY: true
              , pageModel: { type: "remote", rPP:30,  strRpp:"{0}", totalRecords:100, strDisplay: "{0} to {1} 검색결과  {2}건" }
            , detailModel: {
                  cache: true,
                  collapseIcon: "ui-icon-plus",
                  expandIcon: "ui-icon-minus",
                  init: initDetail}
            };

url : "${contextPath}/crm/aaa.ajax",
var page = data.page;
               var list = data.list;
               var totalRec = page.listCount;

$("#grid_md").pqGrid("option","dataModel",{curPage:1,  totalRecords: totalRec, data: list});
$("#grid_md").pqGrid("option","dataModel",{data:data.list});
$("#grid_md").pqGrid( "refresh" );
$("#grid_md").pqGrid( "refreshDataAndView" );

so.. It($("#grid_md")) becomes inactive.
Please reply to this question. thank you.

Pages: [1]