Base solution for your next web application

Activities of "ismcagdas"

It's in Abp.Web.Models namespace. You must have ABP version 0.7.7.0 or higher.

You can put your file in Core project since it is a domain service. You can also add an unique index on Name field of your entity.

Select2 is not included in ASP.NET Zero by default. First you should include select2 javascript (select2.js) and css files (select2.min.css & select2-bootstrap.min.css).

Your select item also must have class name 'select2me' , because metronic handles it this way.

If you create modal on the fly, then you must also trigger jquery select2 by yourself on modal's 'shown.bs.modal' event.

Example html:

<select class="form-control select2me select2-multiple" multiple>
	<optgroup label="Alaskan">
		<option value="AK">Alaska</option>
		<option value="HI" disabled="disabled">Hawaii</option>
	</optgroup>
</select>

Example js for modal shown:

modal.on('shown.bs.modal', function () {
	modal.find('select.select2me').select2({
		placeholder: "Select",
		width: 'auto', 
		allowClear: true
	});
});

You can download metronic fom here <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/releases/download/v1.7.0/metronic-v4.5.3.zip">https://github.com/aspnetzero/aspnet-ze ... v4.5.3.zip</a>

I hope this helps .

Showing 12721 to 12723 of 12723 entries