Hi,
based upon below url i am going to display input filter values on screen
In above url i have updated my code like below
Filter Records b/w Textboxes :
<div ng-repeat="report in items" class="invoice-number-container">
{{report.CName}}={{report.Date | date}},{{report.FromTable}}
</div>
https://ibb.co/85SsDkn
if you can look at into my screenshot
currently in my case
i was generating o/p like below
Filter Records b/w Textboxes :
Empname=1null
FDate=May 30, 2019
TDate=May 31, 2019
but as per as my requiremnt my o/p should be like below
Filter Records b/w Textboxes :
Empname=sree
FDate=May 30, 2019
TDate=May 31, 2019
Could you please check it and help me
<select class="form-control ApplySelect" ng-model="report.FromTable" ng-show="report.CType.toLowerCase()=='dropdown'" ng-change="Save1()"
ng-options="c.Value as c.Text for c in report.DDLValues" select2>
<option value="">Select</option>
</select>
if i can replace
ng-options="c.Value as c.Text for c in report.DDLValues"
To
ng-options="c.Text as c.Text for c in report.DDLValues"
In this instance Dropdown name is displaying
but as per as my requirement i don't want to Value to Text