I want to bind my all users(with the specific role) in the dropdown. how it is possible...? i have attached code with that i have bind other dropdown and now i want to bind user table in dropdown.
public ListResultDto<InstSuburbListDto> GetSuburb()
{
var suburb = _postCodeRepository
.GetAll()
.OrderByDescending(p => p.Id)
.ToList();
return new ListResultDto<InstSuburbListDto>(suburb.MapTo<List<InstSuburbListDto>>());
}
i want to upload images at create, on the time of creating an Entry. i want to code in app service file to upload images.
my code for createing entry is as like this : https://support.aspnetzero.com/QA/Questions/7650
Thanks for the article.
ASP.NET MVC 5.x with AngularJS
Hello,
Can you tell me the procedure , how can I use my Host Table data in Tenant database ?, Because right now I am getting a blank table.
Have you found any solution regarding this query?
Hi! Can you provide me an example for image upload. I tried Changeing Profile picture, but I don't want this uploader. Kindly provide with some different picture uploader or send an example.
<div class="modal-body">
<div class="form-group form-md-line-input form-md-floating-label no-hint">
<input class="form-control" type="text" name="streetName" ng-class="{'edited':vm.installer.streetName}" ng-model="vm.installer.streetName">
<label for="streetNameSelectionCombobox">@L("StreetName")</label>
<select id="streetNameSelectionCombobox"
class="form-control"
ng-options="streetNameval.streetName as streetNameval.streetName for streetNameval in vm.streetNames"
ng-class="{'edited':vm.installer.streetName}"
ng-model="vm.installer.streetName"
ui-jq="selectpicker"
ui-options='{ iconBase: "famfamfam-flag", tickIcon: "fa fa-check" }'
data-live-search="true">
<option value=""></option>
</select>
</div>
</div>
I want to insert data in multiple tables i.e Parent And Child table(Some Fields of Parent Table with Parent Referance) how is it possible in asp.net zero.?
On edit page dropdown , When i select a value from dropdown , it doesn't gets bind with the dropdown, and the value is shown as "NOT SELECTED" sometimes, but also the value is shown in textbox. Even the value is shown in Backend. I am also attaching Screenshots of the same for your furthur reference.