I have added reference Infragistics.Web.Mvc to my project.
Version: 4.14.1.2031
I added one grid to one project. but i am not able to edit my grid at run time.
Below is my code for that grid.
function SchedulerInfoGrid(datasource) {
$("#gridScheduler").igGrid({ PrimaryKey: "ContactID", autoGenerateColumns: false, width: "1024px", renderCheckboxes: true, aggregateTransactions: true, updateUrl: '@Url.Content("~/Nomination/SaveContactsData")', columns: [ { headerText: "Nomination Employee ID", key: "NominatingEmployeeID", dataType: "number" }, { headerText: "Contact Name", key: "ContactName", dataType: "string", width: "20%" }, { headerText: "Company", key: "Company", dataType: "string", width: "20%" }, { headerText: "Phone Number", key: "PhoneNumber", dataType: "string", width: "20%" }, { headerText: "E-mail Address", key: "EmailAddress", dataType: "string", width: "30%" }, ], dataSource: datasource, features: [ { name: 'Hiding', enableVerticalRendering: false, columnSettings: [ { columnKey: 'NominatingEmployeeID', allowHiding: false, hidden: true },
] }, { name: "Selection", mode: "row", multipleSelection: false, touchDragSelect: false, // this is true by default multipleCellSelectOnClick: false }, { name: "Sorting", type: "local" }, { name: 'Updating', editmode:"row", columnSettings: [ { columnKey: "ContactName", editorType: 'string', validation: true, editorOptions: { required: true } }, { columnKey: "Company", editorType: 'string', validation: true, editorOptions: { required: true } }, { columnKey: "PhoneNumber", editorType: 'string', validation: true }, { columnKey: "EmailAddress", editorType: 'string', validation: true, editorOptions: { required: true } }] } ]
});
}
Please let me know what i am missing, why i am not able to edit grid.
Please let me know if you need any other information.
Thanks,
Poonam Chauhan
Hello Poonam,
Currently we don't have a control from our web tools that matches perfectly the WinForms UltraListView. However, depending on your scenario you could make use of the igGrid or the igTree with templating and get functionality similar to the UltraListView. Please, check the sample Drag and Drop - Single Tree to get a feel of what is achievable using templating in the controls of the Ignite UI product.
If you could provide me with a list of specific requirements that you have along with screenshots of your UltraListView setup I may be able to suggest a more specific solution using one of the existing controls.
I am looking forward to hearing from you!
Best regards,
Stamen Stoychev
Hi Stamen,
In one of my windows based application Ultralistview Infragistic control has been used.
Same functionality related to UltraListview window based control, i wanted to use in web based MVC application.
So i wanted to know which control would be able to replace windowbased Ultraview Control to another control in WEB based MVC application.
Thanks
Poonam
I am glad you were able to resolve your issue. Please, don't hesitate to contact me if you have any other questions or concerns!
Good luck with your project!
Issue has been resolved now.