i have this column in a grid:
<e-grid-column template="#templateDetallesUbicacion" maxwidth="200"></e-grid-column>
this is the template script:
<script id="templateDetallesUbicacion" type="text/x-template">
<div>
<input type="button" class="btn btn-secondary" onclick="VerDetalles(${UbicacionID});" value="Detalles" />
</div>
</script>
the field "
UbicacionID" is a GUID type. I cannot make it work because the function takes the value as a string, but if i put in between '' the resulting html is wrong. Can u help me with that?