ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: kiwon34 on August 01, 2019, 01:50:31 pm
-
Hello param,
I want to put a combobox instead of title.
In demo, I see that there is combobox in filter area, but what I want is the combobox shown on the title area.
Is there a way of doing that?
-
Do you mean title of the columns or the single title at top of the grid.
Could you please share a screenshot of the desired location of combobox.
-
That's right. I want the combo to be displayed in the single title area.
I have attached a screen file.
-
Isn't there any way to do this?
Please tell me...
-
This is a workaround way:
First you would need to write column.title as input html.
title: "<input type='text' id='di_rank'/>"
Then initialize autocomplete in refreshHeader event.
refreshHeader: function(){
$("#di_rank").autocomplete({
source: ['apple','bat','cat']
})
},