Hi ,
I want to display null text as default but it is showing 'select ...' . I have added nulltext as "" but is not working.
Could you please help me . Issue sample : http://jsfiddle.net/axxc6zLz/
$(function () {
var data = [{ "ID": 1, "Name": "John Smith", "Age": 45 }, { "ID": 2, "Name": "Mary Johnson", "Age": 32 }, { "ID": 3, "Name": "Bob Ferguson", "Age": 27 }];
$("#combo").igCombo({ dataSource: data, //JSON Array defined above valueKey: "ID", textKey: "Name", enableClearButton: true, nullText: "sdcfds ", selectionChanged: function (evt, ui) { if (!ui.items) { ui.owner.selectedIndex(-1); } } });});
Hi Manju,
You can accomplish this by setting the placeHolder option. As far as I know, there is not a nullText option.
You can find more information about placeHolder here:http://www.igniteui.com/help/api/2016.1/ui.igcombo#options:placeHolder
Please let me know if you have any further questions.