You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
610 B
18 lines
610 B
<div
|
|
class="item"
|
|
ondragover="event.preventDefault();"
|
|
draggable="true"
|
|
@ondragstart="@OnDragStart"
|
|
@ondrop="@OnDrop"
|
|
@ondragenter="@OnDragEnter"
|
|
@ondragleave="@OnDragLeave">
|
|
|
|
@if (Parent.InventoryItems[this.Index] != null)
|
|
{
|
|
var s = "/";
|
|
//<img src="data:image/png;base64, @(Item.ImageBase64)" class="img-thumbnail" title="@Item.DisplayName" alt="@Item.DisplayName"/>
|
|
@Parent.InventoryNbElems[this.Index] @s @Parent.InventoryItems[this.Index].StackSize<br/>
|
|
@Parent.InventoryItems[this.Index].DisplayName
|
|
|
|
}
|
|
</div> |