UI not rendering as intended in my newly built angular web app











up vote
0
down vote

favorite












The labels, as well as the user input area's, are unintentionally overlapping. I would like them to be displayed clearly as some of them are. The input field associated with "perishable ?" label is also not rendering as intended and should allow the user to either select true or false (a boolean input selector). The input fields for "Category" and "Applicable shops" should allow users to select a value, or multiple values, respectively, from a dropdown list.



Faulty UI



<div class="card" >
<div class="card-content">
<span class="card-title " style="text-align: center">Add Product</span>
<form (ngSubmit)="onSubmit()">
<div class="row">
<div class="input-field col s6">
<input type="number" placeholder="add product reference"
[(ngModel)]="product.product_ref" name="product reference">
<label>Product Reference</label>
</div>
<div class="input-field col s6">
<input type="string" placeholder="add product name"
[(ngModel)]="product.name" name="product name">
<label>Product Name</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<input type="string" placeholder="add product description"
[(ngModel)]="product.description" name="product description">
<label>Product Description</label>
</div>
<div class="input-field col s6">
<input type="number" placeholder="add product price"
[(ngModel)]="product.price" name="product price">
<label>Product Price</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<select [(ngModel)]="product.perishable" name="product perishability">
<option value="True">True</option>
<option value="False">False</option>
</select>
<label>Perishable ?</label>
</div>
<div class="input-field col s6">
<select [(ngModel)]="product.category"name="product category">
<option value="Fruit & Veg">Fruit & Veg</option>
<option value="Dairy">Dairy</option>
<option value="Cupboard">Cupboard</option>
<option value="Bakery" selected>Bakery</option>
</select>
<label>Product Category</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<select [(ngModel)]="shopapplicable"name="product category">
<option value="PnP Rondebosch">PnP Rondebosch</option>
<option value="Pnp Claremont">Pnp Claremont</option>
<option value="PnP Wynberg">PnP Wynberg</option>
<option value="Pnp Observatory">Pnp Observatory</option>
</select>
<label>Applicable Shops** (requires quick multiselectoptions)</label>
</div>
<div class="input-field col s6">
<input type=submit value="Submit" class="btn">
</div>
</div>
</form>
</div>
<label>N.B * this also needs to include ingredient info ,related products
array and specific dietry cat it qualifies for</label>
</div>









share|improve this question







New contributor




Meyer Weitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    up vote
    0
    down vote

    favorite












    The labels, as well as the user input area's, are unintentionally overlapping. I would like them to be displayed clearly as some of them are. The input field associated with "perishable ?" label is also not rendering as intended and should allow the user to either select true or false (a boolean input selector). The input fields for "Category" and "Applicable shops" should allow users to select a value, or multiple values, respectively, from a dropdown list.



    Faulty UI



    <div class="card" >
    <div class="card-content">
    <span class="card-title " style="text-align: center">Add Product</span>
    <form (ngSubmit)="onSubmit()">
    <div class="row">
    <div class="input-field col s6">
    <input type="number" placeholder="add product reference"
    [(ngModel)]="product.product_ref" name="product reference">
    <label>Product Reference</label>
    </div>
    <div class="input-field col s6">
    <input type="string" placeholder="add product name"
    [(ngModel)]="product.name" name="product name">
    <label>Product Name</label>
    </div>
    </div>
    <div class="row">
    <div class="input-field col s6">
    <input type="string" placeholder="add product description"
    [(ngModel)]="product.description" name="product description">
    <label>Product Description</label>
    </div>
    <div class="input-field col s6">
    <input type="number" placeholder="add product price"
    [(ngModel)]="product.price" name="product price">
    <label>Product Price</label>
    </div>
    </div>
    <div class="row">
    <div class="input-field col s6">
    <select [(ngModel)]="product.perishable" name="product perishability">
    <option value="True">True</option>
    <option value="False">False</option>
    </select>
    <label>Perishable ?</label>
    </div>
    <div class="input-field col s6">
    <select [(ngModel)]="product.category"name="product category">
    <option value="Fruit & Veg">Fruit & Veg</option>
    <option value="Dairy">Dairy</option>
    <option value="Cupboard">Cupboard</option>
    <option value="Bakery" selected>Bakery</option>
    </select>
    <label>Product Category</label>
    </div>
    </div>
    <div class="row">
    <div class="input-field col s6">
    <select [(ngModel)]="shopapplicable"name="product category">
    <option value="PnP Rondebosch">PnP Rondebosch</option>
    <option value="Pnp Claremont">Pnp Claremont</option>
    <option value="PnP Wynberg">PnP Wynberg</option>
    <option value="Pnp Observatory">Pnp Observatory</option>
    </select>
    <label>Applicable Shops** (requires quick multiselectoptions)</label>
    </div>
    <div class="input-field col s6">
    <input type=submit value="Submit" class="btn">
    </div>
    </div>
    </form>
    </div>
    <label>N.B * this also needs to include ingredient info ,related products
    array and specific dietry cat it qualifies for</label>
    </div>









    share|improve this question







    New contributor




    Meyer Weitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      The labels, as well as the user input area's, are unintentionally overlapping. I would like them to be displayed clearly as some of them are. The input field associated with "perishable ?" label is also not rendering as intended and should allow the user to either select true or false (a boolean input selector). The input fields for "Category" and "Applicable shops" should allow users to select a value, or multiple values, respectively, from a dropdown list.



      Faulty UI



      <div class="card" >
      <div class="card-content">
      <span class="card-title " style="text-align: center">Add Product</span>
      <form (ngSubmit)="onSubmit()">
      <div class="row">
      <div class="input-field col s6">
      <input type="number" placeholder="add product reference"
      [(ngModel)]="product.product_ref" name="product reference">
      <label>Product Reference</label>
      </div>
      <div class="input-field col s6">
      <input type="string" placeholder="add product name"
      [(ngModel)]="product.name" name="product name">
      <label>Product Name</label>
      </div>
      </div>
      <div class="row">
      <div class="input-field col s6">
      <input type="string" placeholder="add product description"
      [(ngModel)]="product.description" name="product description">
      <label>Product Description</label>
      </div>
      <div class="input-field col s6">
      <input type="number" placeholder="add product price"
      [(ngModel)]="product.price" name="product price">
      <label>Product Price</label>
      </div>
      </div>
      <div class="row">
      <div class="input-field col s6">
      <select [(ngModel)]="product.perishable" name="product perishability">
      <option value="True">True</option>
      <option value="False">False</option>
      </select>
      <label>Perishable ?</label>
      </div>
      <div class="input-field col s6">
      <select [(ngModel)]="product.category"name="product category">
      <option value="Fruit & Veg">Fruit & Veg</option>
      <option value="Dairy">Dairy</option>
      <option value="Cupboard">Cupboard</option>
      <option value="Bakery" selected>Bakery</option>
      </select>
      <label>Product Category</label>
      </div>
      </div>
      <div class="row">
      <div class="input-field col s6">
      <select [(ngModel)]="shopapplicable"name="product category">
      <option value="PnP Rondebosch">PnP Rondebosch</option>
      <option value="Pnp Claremont">Pnp Claremont</option>
      <option value="PnP Wynberg">PnP Wynberg</option>
      <option value="Pnp Observatory">Pnp Observatory</option>
      </select>
      <label>Applicable Shops** (requires quick multiselectoptions)</label>
      </div>
      <div class="input-field col s6">
      <input type=submit value="Submit" class="btn">
      </div>
      </div>
      </form>
      </div>
      <label>N.B * this also needs to include ingredient info ,related products
      array and specific dietry cat it qualifies for</label>
      </div>









      share|improve this question







      New contributor




      Meyer Weitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      The labels, as well as the user input area's, are unintentionally overlapping. I would like them to be displayed clearly as some of them are. The input field associated with "perishable ?" label is also not rendering as intended and should allow the user to either select true or false (a boolean input selector). The input fields for "Category" and "Applicable shops" should allow users to select a value, or multiple values, respectively, from a dropdown list.



      Faulty UI



      <div class="card" >
      <div class="card-content">
      <span class="card-title " style="text-align: center">Add Product</span>
      <form (ngSubmit)="onSubmit()">
      <div class="row">
      <div class="input-field col s6">
      <input type="number" placeholder="add product reference"
      [(ngModel)]="product.product_ref" name="product reference">
      <label>Product Reference</label>
      </div>
      <div class="input-field col s6">
      <input type="string" placeholder="add product name"
      [(ngModel)]="product.name" name="product name">
      <label>Product Name</label>
      </div>
      </div>
      <div class="row">
      <div class="input-field col s6">
      <input type="string" placeholder="add product description"
      [(ngModel)]="product.description" name="product description">
      <label>Product Description</label>
      </div>
      <div class="input-field col s6">
      <input type="number" placeholder="add product price"
      [(ngModel)]="product.price" name="product price">
      <label>Product Price</label>
      </div>
      </div>
      <div class="row">
      <div class="input-field col s6">
      <select [(ngModel)]="product.perishable" name="product perishability">
      <option value="True">True</option>
      <option value="False">False</option>
      </select>
      <label>Perishable ?</label>
      </div>
      <div class="input-field col s6">
      <select [(ngModel)]="product.category"name="product category">
      <option value="Fruit & Veg">Fruit & Veg</option>
      <option value="Dairy">Dairy</option>
      <option value="Cupboard">Cupboard</option>
      <option value="Bakery" selected>Bakery</option>
      </select>
      <label>Product Category</label>
      </div>
      </div>
      <div class="row">
      <div class="input-field col s6">
      <select [(ngModel)]="shopapplicable"name="product category">
      <option value="PnP Rondebosch">PnP Rondebosch</option>
      <option value="Pnp Claremont">Pnp Claremont</option>
      <option value="PnP Wynberg">PnP Wynberg</option>
      <option value="Pnp Observatory">Pnp Observatory</option>
      </select>
      <label>Applicable Shops** (requires quick multiselectoptions)</label>
      </div>
      <div class="input-field col s6">
      <input type=submit value="Submit" class="btn">
      </div>
      </div>
      </form>
      </div>
      <label>N.B * this also needs to include ingredient info ,related products
      array and specific dietry cat it qualifies for</label>
      </div>






      angular-cli






      share|improve this question







      New contributor




      Meyer Weitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Meyer Weitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Meyer Weitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked Nov 21 at 7:21









      Meyer Weitz

      1




      1




      New contributor




      Meyer Weitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Meyer Weitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Meyer Weitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });






          Meyer Weitz is a new contributor. Be nice, and check out our Code of Conduct.










           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53407054%2fui-not-rendering-as-intended-in-my-newly-built-angular-web-app%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Meyer Weitz is a new contributor. Be nice, and check out our Code of Conduct.










           

          draft saved


          draft discarded


















          Meyer Weitz is a new contributor. Be nice, and check out our Code of Conduct.













          Meyer Weitz is a new contributor. Be nice, and check out our Code of Conduct.












          Meyer Weitz is a new contributor. Be nice, and check out our Code of Conduct.















           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53407054%2fui-not-rendering-as-intended-in-my-newly-built-angular-web-app%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Berounka

          Sphinx de Gizeh

          Different font size/position of beamer's navigation symbols template's content depending on regular/plain...