1
Help for ParamQuery Pro / Re: Disable menuIcon of menuFilter for one column
« on: May 03, 2019, 02:52:44 pm »
Perfect !
Thanks
Thanks
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.
{
dataIndx: 'action_plan_check_status', title: $.i18n.t("nucleys_elabel:general.nucleys_table_action_plan_check_status"), minWidth: '5%', maxWidth: '100%',
filter: {
crules: [{
condition: "range"
}],
options: [
{ "value": "pending", "text": $.i18n.t("nucleys_elabel:general.action_plan_check_status_pending") },
{ "value": "validated", "text": $.i18n.t("nucleys_elabel:general.action_plan_check_status_validated") },
{ "value": "unvalidated", "text": $.i18n.t("nucleys_elabel:general.action_plan_check_status_unvalidated") }
]
},
render: function( ui ){
return {
text: ui.rowData.action_plan_check_status ? $.i18n.t("nucleys_elabel:general.action_plan_check_status_"+ui.rowData.action_plan_check_status) : '',
};
},
exportRender: function( ui ){
return {
text: ui.rowData.action_plan_check_status ? $.i18n.t("nucleys_elabel:general.action_plan_check_status_"+ui.rowData.action_plan_check_status) : '',
};
},
editor: {
type: 'select',
valueIndx: "value",
labelIndx: "text",
options: [
{ "value": "pending", "text": $.i18n.t("nucleys_elabel:general.action_plan_check_status_pending") },
{ "value": "validated", "text": $.i18n.t("nucleys_elabel:general.action_plan_check_status_validated") },
{ "value": "unvalidated", "text": $.i18n.t("nucleys_elabel:general.action_plan_check_status_unvalidated") }
]
}
}
filter: { type: "select",
crules: [{
condition: "range"
}] ,
valueIndx: "value",
labelIndx: "text",
options: [
{ "value": "pending", "text": "Pending" },
{ "value": "validated", "text": "Validated" },
{ "value": "unvalidated", "text": "Unvalidated" }
],
listeners: ['change']
}