//confirm new meal
 protected void btnDodajOK_Click(object sender, EventArgs e)
 {
     if (!string.IsNullOrEmpty(txtNoviNaziv.Text) && !mealsList.Any(m => m.Name.ToLower() == txtNoviNaziv.Text.ToLower()))
     {
         Meal m = new Meal
         {
             Name = txtNoviNaziv.Text
         };
         if (SQLProcedures.InsertMeal(m) > 0)
         {
             lblInsertError.Text   = "";
             tblDodajObrok.Visible = false;
             GridViewMealsBind();
         }
     }
     else
     {
         txtNoviNaziv.Text = "";
         txtNoviNaziv.Focus();
         lblInsertError.Text = "Naziv nije unesen ili već postoji u bazi!";
     }
 }