I have a jqxDropdown list and I am setting its index as 0 in settings itself. I have a change event for this dropdown which calls a service. Now I want its change event to be triggered the first time when the component is loaded.
Dropdown :
this.myDropDownList.createWidget(this.clientDdlSettings);
Settings :
private clientDdlSettings: jqwidgets.DropDownListOptions =
{
source: this.clientDdlSource, displayMember: “clientName”, valueMember: ‘clientId’, selectedIndex: 0, width: ‘200’, height: ’25’
}
-
This reply was modified 6 years, 3 months ago by Moizuddin Khaja. Reason: replace triggered to loaded