ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: npdev13 on July 03, 2019, 02:32:21 pm
-
Hello,
I have Pro version of PqGrid, what I have requirement is I want numberCell because need Drag & Drop functionality, But I not want number value in that cell as shown in screenshot. Can you please help me how to achieve it.
Thanks,
-
Your screenshot is missing. Anyway you can use a normal empty column, any column can be use for drag & drop.
-
I have attached screenshot again, If you see the screenshot you will get idea what we need.
-
Numbers can't be removed from number columns.
Drag handle are displayed in number cells by default, they can be displayed in other cells by dragModel.diDrag option.
-
css workaround can be used to remove numbers from number columns. :)
.pq-grid-number-cell{
font-size:0 !important;
}
-
Yes it works, Thanks