Is it possible to have a drop down (combobox) on the grid table?
Is there any example about it?
Best Regards
hey ,
yes you can take a look at this sample:
http://samples.infragistics.com/jquery/combo-box/grid-editor
Hope it helps,
Angel
hey,
what about if I am using a code like this
<%= Html.Infragistics().Grid<MyObject>()......... %> and not the notation shown in the exaple
thanks in advance
Hi,
Unfortunately at the moment this is not supported. Please let me know how critical and urgent this is to your project, and we will do our best to help with a personalized solution.
Thank you,
Hello,
I am following up to see if you have any further questions with this matter. If you need any further assistance, please provide me with the details Angel asked above, so I may look in to this.
Fortunately, I put the dropdown onto the combo box, but using javascript. I wanted to do it using C# code.
Thanks.
Luis
I am just following up to see, if you need any further assistance with this matter.
I am not certain about this question, since editor options in grid is set through JQuery code:
columnSettings: [{//The combo is defined as an editor provider. Combo options are defined under 'editorOptions'.columnKey: "CategoryID",editorType: 'combo',required: true,editorOptions: {mode: "dropdown",dataSource: northWindCategoriesJSON,textKey: "Name",valueKey: "ID"}
The igGrid is a jQuery-based client-side grid that is responsible for presenting and manipulating tabular data. Its whole lifecycle is on the client-side, which makes it independent from server-side technology:
<http://help.infragistics.com/NetAdvantage/jQuery/Current/CLR4.0?page=igGrid_Overview.html>
I hope this helps.