ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: cijojohn on May 04, 2017, 02:53:52 pm
-
Hi Team,
I am facing issue while copy select dropdown and paste this into some excel file it pasted IDs of selected value.
i am using below editor option and i want to use like that only .
editor: {
type: 'select',
options: [{ '': '' }, { 'SE': 'Speedy Express' }, { 'UP': 'United Package' }, { 'FS': 'Federal Shipping'}]
},
i use https://paramquery.com/demos/editing_custom# for demo.
Please provide solution asap.
I am attaching scrren shot as well.
-
You need to make changes as for ShipVia column here https://paramquery.com/pro/demos/editing_custom
{ dataIndx: 'ShipViaId', hidden: true }, //hidden column to store ShipVia Id.
{ title: "Shipping Via", dataIndx: "ShipVia", width: 110,
editor: {
type: 'select',
init: function (ui) {
ui.$cell.find("select").pqSelect();
},
valueIndx: "value",
labelIndx: "text",
mapIndices: {"text": "ShipVia", "value": "ShipViaId"},
options: [
{ "value": "", "text": "" },
{ "value": "SE", "text": "Speedy Express" },
{ "value": "UP", "text": "United Package" },
{ "value": "FS", "text": "Federal Shipping" }
]
}
},
-
can't we do something in earlier demo.
-
Hi Team,
Is there a way to copy the rendered value of a drop down?
Similar to how we do export data using rendered option.
Thanks
-
Currently only the cell values are copied, not the rendered values.