Questions tagged as 'materialize'

1
answer

input range materialize does not take the value of a php variable

<?php $estatus = $resultado['status']; echo '<p class="range-field"> <input type="range" value= "$estatus" disabled> </p>'; echo $estatus; ?> I use the following lines to show a bar that will indi...
asked by 29.10.2018 / 00:01
3
answers

How can I rename the name of a tab element in materializecss?

Hello Stackoverflow people, I hope you have a great day. I'm working on a project and I have to use the tabs elements of the Materializecss framework (a material design framework). Basically I want to achieve the following behavior in the tab el...
asked by 26.12.2017 / 05:43
1
answer

AngularJS: Edit item of a Table in a Modal

I'm working on a small project with a Java back-end and front-end with AngularJS and Materialize. I already have the whole back-end running (tested with Rest-client), the problem that I have at this moment is the following: I have a data g...
asked by 08.03.2016 / 20:54
1
answer

How to correctly load a Materialize 1.0 Select from JQuery?

When applying the browser-default class the options are loaded correctly, but I can not work with the materialize select loading option from jquery. <div class="input-field col s6 m4 l4"> <select name="prim" id="prim" class="val...
asked by 14.11.2018 / 04:20
1
answer

Change color to accordion of Materializecss

I have an accordion from Materialize that when clicking shows a table, what I want to do is that when I give in the "title" (the div that has the collapsible-header class), I change the color class of that same div and when I click to return to...
asked by 19.04.2018 / 19:36
1
answer

Convert text to date

Hi, I'm working with materialize css, and obviously JS, I want to convert a string whose format is this: Mar 12, 2018 I want to convert that to Date so I can store it in the DB as Date.     
asked by 12.03.2018 / 08:13
2
answers

Get the value of a select with Vue.js

My problem is that I can not get the value that the <select> has, although I put the attribute v-model to the label <select> and that on the internet I find that it is the correct way, it does not work for me, cr...
asked by 15.03.2018 / 22:46
1
answer

How to use Background image in a Materialize column

Good morning, my question is how I should do to put a background image in a materialize column. For example, suppose I want a section with half an image and half a text would be something like that? <div class="row"> <div c...
asked by 25.08.2017 / 18:41
2
answers

Fill select in Angular with API query results

I'm making an application with Angular 4 and using Materialize CSS. My goal is: when a certain component is loaded, an HTTP query is made that extracts some data, which will dynamically fill a select content in the view. Next, I show the service...
asked by 16.12.2017 / 19:12
1
answer

define dynamic variables in jQuery, with Thymeleaf

Good, I am trying to dynamically call the "id" in the tags with the "th: each", as follows. <div th:each="alumno : ${alumnos}" class="row" th:id="'card_' + ${alumno.id}" style="display: none"> <div class="col s12 m10">...
asked by 05.05.2017 / 07:02