Facing issue in disabling up and down arrow buttons on user selecting 2 values, please hlep me to fix this.
-
yes its for my testing purpose I have added that variable in Connections, so yes it will duplicate the values, i removed it and I will try and update here.
Thanks for response. -
Hi @Bob64
yes that is for testing purpose, i removed and tried, im getting undefined for
console.info(" ARPITHA " +(flightsDataManager.selectedEffModel.getNavigationRestricted))i have renamed QPROPERTY getter method from isNavigationRestricted to getNavigationRestricted
please suggest me why im getting undefined, what's the solution.
It will help me a lot. -
Hi @Bob64
yes that is for testing purpose, i removed and tried, im getting undefined for
console.info(" ARPITHA " +(flightsDataManager.selectedEffModel.getNavigationRestricted))i have renamed QPROPERTY getter method from isNavigationRestricted to getNavigationRestricted
please suggest me why im getting undefined, what's the solution.
It will help me a lot.@Arpitha said in Facing issue in disabling up and down arrow buttons on user selecting 2 values, please hlep me to fix this.:
console.info(" ARPITHA " +(flightsDataManager.selectedEffModel.getNavigationRestricted))
if NavigatioRestricted is defined inside selectedEffModel, the access is like the following
console.info(" ARPITHA " + flightsDataManager.selectedEffModel. NavigatioRestricted ) //not sure how NavigatioRestricted is defined.
and func getNavigationRestricted call is not needed.
You need to show some code here and read some basic doc about binding of qml and c++ class.