How to use pass hidden field value in actionlink using html. Sep 28, 2012 · @using (Html.

How to use pass hidden field value in actionlink using html Is it possible to get a HTML id dynamically and add it to the @Html. there is no name attribute on input type text; id of Hidden element should not be name (leading confusion); Hidden field should be inside form tag Dec 21, 2022 · This is a bit of an old post, but there is actually a way to do an onclick operator that calls a function instead of going anywhere in ASP. I think this should be simple but I can't seem to figure out how to get the value in the associated textbox passed to my controller when the user clicks on the link. Textboxfor to an html. Action helper, except change @item. jsp' page you recuperate the value by calling the getParameter(String name) method of the implicit request object, as so: <% String hidden = request. Note also that you have to put the script inside a document. Action to reference different action method based based on the radio button selection, or Dec 21, 2022 · This is a bit of an old post, but there is actually a way to do an onclick operator that calls a function instead of going anywhere in ASP. So I want these values available to pass on to a controller. ActionLink(string LinkText,string ActionName,string ControllerName) do like this: @Html. ActionLink: @Html. Is it possible in that way? The script will run after the code is executed and page is rendered. Raw() to display your links, to prevent them from being HTML encoded. BeginForm("SomeAction", "Home")) { @Html. You can concat the client-side variables with the server-side url generated by this method, which is a string on the output. if (@ViewBag. This method Sep 1, 2014 · The problem is you're trying to represent distinct things as the same thing. When user give some input in the textbox and click the actionlink below, the value of the textbox will get pass to the actionResult(FWMenu) in the controller. Hidden("x", ViewBag. Feb 14, 2012 · I have two input control and and one Html. ActionLink in my ASP. Oct 16, 2014 · Does anyone know if it's possible to pass a hidden request parameter in with a <select> <option> element in a HTML form? So for example, if the user selected <option value="foo">foo</option> from a <select> list of options, could I somehow pass a hidden value in, as well as the "foo" value, and retrieve that as a request parameter? E. Post, new { @class = "form-group" })) and then submit with a standard submit button I would be very happy with either making that Action hit my post method in my controller or passing Oct 21, 2010 · In my partial view I am using a HTML. Binding value of form input to action link in ASP. Oct 21, 2013 · IN MVC-4 Razor view I have a html table with 2 columns. Create an argument named "passname" on the action that handles the post. EditorFor requires a strongly-typed model. Parse(that hidden field value goes here)). Acti you need to use this overload of Html. ElementAt(0). Modified 4 years, send value to controller using html. Oct 25, 2012 · Finally, you are ready to create your HtmlHelper using all of these elements (plus your RouteCollection). Apr 8, 2011 · The overload you are using makes the year value end up in the html attributes of the link (check your rendered source). After doing a little reading, it appears as though @Html. ActionLink Textbox Value. NET Razor. You need a new model class that contains a property that holds those Address records and a property that holds the PersonID value. Can you explain how above can achieve that? – Mar 25, 2011 · There are few mistakes in your form. The basic idea behind posting (passing HTML field values from view to controller) is by matching the name field of the rendered HTML control with receiving parameters in the Controller's action method. NET MVC. You should use this overload. cshtml, I have : @model IEnumerable I can get all my values in foreach in my view. Note a controller had set "selectedTraining" and "selectedTrainingType" in the ViewBag to pass to the view. I think I'm getting a stack overflow because the main layout file renders the Blogs/Home action, which pulls in the layout file, which renders the Blogs/Home action, which pulls in the main layout file, which and on we go to infinity. – @Html. ActionLink(Model. Each quantity textbox has a unique id derived from the product id. LinkExtensions. BeginForm("JoinFleet", "Members", new { fleet = 3 }, FormMethod. Action in ASP. Improve this answer. How to create a code like below? A hidden field often stores what database record that needs to be updated when the form is submitted. net 4. 1 MVC application. ActionLink? Modal: I have a table that lists products as well as displays a quantity text box and an Html. Dec 3, 2011 · Change the action parameter to be int ProductId. I can not use html. getElementById("exclusionList"); // Aug 23, 2010 · You could pass the value to which you want to set the hidden input to a function you create: function handleClick(val){ document. Explore Teams Jul 16, 2014 · I'll just try to answer the question but my examples very simple because I'm new at mvc. I have a basic Html. Thus, it can only contain parameters that can be contained in the url of the link. However, if the data is present in a hidden field it will always be possible for a user to find it if they care to look. ActionLink and Url. Nov 15, 2017 · My Solution to this issue is a fairly simple one. ToList(). Get)) { @Html. Mvc. Hope this help somebody. dropdownlist selected value) using Ajax. So inside your stayHomeFunc function which is triggered when the link is clicked: Nov 19, 2013 · thanks for your quick response but my problem is getting that value in @HTML. ActionLink. I need to pass the ReportIds to the controller. ActionLink to create your custom link. ActionLink to the controller. Once you have done all of this, you can use LinkExtensions. Aug 23, 2014 · So, does adding onclick attribute overrides default behavious of @Html. Net MVC Razor. NET Core 3. HtmlActionLink with controller name. These values are generated by code behind. Raw(Html Mar 20, 2016 · You can pass the hidden field value from one View to the Controller, then pass the value from Controller to the other View with the help of TempData, ViewBag or ViewData etc. but if you want to send particular value to the server with this approach you can do it by query string. Apr 19, 2015 · From the MSDN documentation (my emphasis). public ActionResult MyMethod() { Test test=new Test(); var test. clientName value to become "Foo". getParameter("inputName"); %> The Hidden Value is <%=hidden %> The output of the above script will be: The Hidden Value is hiddenValue May 8, 2014 · now a new requirment have been raised that there should be two radio buttons (Tag & Serial) to determine if the user need to do an autocomplete using the Tag number of the Serial number. 1. A survey question is a fundamentally different thing that a particular user's answer to that survey question. So, if you want to access the value, you have to return to the code. Because what happens is, when you generate the action link the object you pass is converted into RouteValueDictionary which will be passed to the UrlHelper to append the route dictionary values to the link. Jul 14, 2017 · I have @Html. What you think is routeValues is actually htmlAttributes! Just look at the generated HTML, you will see that this anchor's href property doesn't look as you expect it to look. Mar 16, 2015 · You can parse your array into a JSON-string to store it:. Here Mudassar Ahmed Khan has explained with an example, how to pass (send) Hidden Field value from View to Controller in ASP. Jul 11, 2015 · You can't pass complex objects: new { model = Model, sortBy = "EffectiveStartDate", }, model = Model makes no sense and cannot be sent using GET. ActionLink()? Mar 19, 2014 · I am trying to pass a hidden field value from a view in one controller to another controller. Here's what you are using: Oct 14, 2011 · if you already have that hidden input : function product(a, b) { return a * b; } function setInputValue(input_id, val) { document. It cannot be used with data from the ViewBag. But the input field displays nothing and on submission form. @foreach (var item in Model) { item. 2nd column of table has a &lt;a&gt; clicking on it it redirect to some other You are using a wrong overload of the Html. 1st columns shows a field and also stores it as a hidden field. by which my link looks same. push('1'); elems . com is the number one paste tool since 2002. Get the generated URL and use string replace function to switch PARENT_ID with the value from the textbox. Now I know I can pass in complex objects since I can get the "League" object to come Feb 14, 2016 · The @Html. Aug 23, 2010 · You could pass the value to which you want to set the hidden input to a function you create: function handleClick(val){ document. public ActionResult Details(int productId) { return View(""); } your controller have to get an "id" parameter because you declared it as not nullable int so when you send productId it still doesn't match the function signature. Note: While the value is not displayed to the user in the page's content, it is visible (and can be edited) using any browser's developer tools or "View Source" functionality. AntiForgeryToken Method. I have a page that does a customer search one by the whole email and the other by a partial, the partial pulls and displays a list the list has an action link that points to a actionresult called GetByID and passes in the id Jun 22, 2017 · In my code I'm trying to call an asp-controller action with some arguments. js file. This assumes that this is the only anchor tag that has a data-id with that value. AttachmentId; } Oct 23, 2013 · Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Oct 10, 2011 · The webpage explains the differences between HTML. public static MvcHtmlString ActionLink( this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName, Object routeValues, Object htmlAttributes ) Nov 5, 2012 · I'm trying to pass parameters so the values will vary. Aug 27, 2012 · I am trying to pass a Form value "CustomerID" (i. Hidden helper as shown below. IdTrips : 0, page = i} Since you have a default parameter value for idtrips, this should only set it to something else if it is greater than 0. Jul 2, 2012 · Rather than passing your value using @Html. stringify breaks the HTML Here I'll explain what I mean: <input type="hidden" value="{"name":"John"}"> As you can see the first double quote after the open chain bracket could be interpreted by some browsers as: Mar 5, 2017 · I'm working with MVC in . Pastebin. 0. Then redirect user to this newly generated URL. Jul 22, 2016 · Since the @Html. Aug 14, 2018 · In this article I will explain with an example, how to pass (send) TextBox Value to Controller Action method using Html. net mvc 3. Oct 9, 2012 · Possible Duplicate: Razor syntax prevent escaping html in an action link How can I generate link, which contains image, using ASP. ActionLink control on my page. At the moment I got some values stored in my html file using hidden field. Now when I select the e Nov 28, 2011 · You are using incorrect overload. ActionLink( string linkText, string actionName, string controllerName, object routeValues, object htmlAttributes ) @antman1p That sounds like a new question, not a comment. On the hidden tag, the critical thing is set to the "name" attribute. On the other hand I think the only way to pass this hidden field is using input field inside hyperlink. [HttpPost] ///This function is in my controller class public ActionResult Delete(string txtDelete) { int _id = Convert. ActionLink Without Controller Name Nov 22, 2018 · This article will illustrate how to pass (send) values of Hidden Field created using Html. Actionlink in MVC 4. BeginForm("AddToCart","Cart")) { <input type="hidden Apr 13, 2021 · I'm using @Html. Action() actually invokes and renders the action. Net MVC - How to Post a Collection Aug 10, 2010 · Although I have seen the suggested methods used and working, I think that setting the value of an hidden field only using the JSON. Oct 30, 2014 · Learn how to pass models using ActionLink in ASP. ToInt32(txtDelete); // put your code } Dec 24, 2015 · I'd like to know if a better approach exists to store data in html content. However, I recommend you use a strongly-typed model. NET MVC Razor view engine @Html. x); Share. You are working with a list of items, and in your scenario you will need to access each individual item like accessing an array, i. Hidden to actionlink thanks a lot. EditorFor( x => x. I’m just not sure how to to get it to do that. May 22, 2016 · Here is my Hidden field id set by viewbag:. 0. How do i pass the value of these input control as parameter to Controller Action Feb 14, 2011 · Ask questions, find answers and collaborate at work with Stack Overflow for Teams. BeginForm ("SearchIndex", "Movies", FormMethod. new { idtrips = Model. I want to extract the Hidden field and store it in some variable for future use. How do you use hidden field value in Actionlink? ActionLink doesn’t use the hidden fields to make the request. public class ItemController:Controller { public ActionResult Login(int id) { return View("Hi", id); } } On a page that is not located at the Item folder, where ItemController resides, I want to create a link to the Login method. Write(Html. Web. idTrips > 0 ? Model. So inside your stayHomeFunc function which is triggered when the link is clicked: Apr 8, 2011 · The overload you are using makes the year value end up in the html attributes of the link (check your rendered source). HtmlActionLink with CSS class; Html. Sep 22, 2011 · The value for the hidden field will be send together with all the other POST data (if your form uses a POST). Here is my code : View : @Html. On the create View I want to users to be able to perform a server look up using the registration plate to auto fill the Model/Make/Colour information. CustomerId == int. getElementById(input_id How to Pass textbox value using @html. Ask Question Asked 6 years, 6 months ago. Every time I debug the ActionResult only ONE of my parameters comes through and the other is null (depending on which is first). Aug 14, 2012 · I have a simple model which models a vehicle entity. Sep 9, 2016 · So I made use of hidden fields in the views. actionlink in asp. Html. my current field will pass the tag number. ActionLink() ? Basically what I need is to get the value from jquery function and pass it as routevalue to actionlink. Works great when you just want to route it against straightforward routing calls, but absolutely refuses to cooperate when you want to add a simple querystring at the end. ActionLink() method will generate a url link to the given Controller/Action. So you cannot pass an object through on the url. Once the action link renders it becomes PrintMed so you would need to modify the html on the anchor tag. HtmlActionLink with parameters. Explore Teams Jul 11, 2012 · You should not pass model to the controller action like new { person = employee } in Html. Jan 20, 2015 · You were on track, it was just the edit part that you didn't know how to complete. May 11, 2015 · Your use of a foreach loop does not generate the correct name attributes necessary to bind to a collection and you need to use a for loop or a custom EditorTemplate for typeof Location so that the form controls include an indexer. Edit: Model: public class MyModel { public TABLE_CODES Keys { get; set Nov 24, 2015 · I am passing value from Html. Is there a method to achieve this using TagHelpers, or do we still have to fall back to @Html. a list of Books. ActionLink syntax isn't inside a foreach loop, you obviously can't use IEnumerable<OpenBurn. May 22, 2014 · Using jQuery to select that element. you have used following to make Jan 11, 2018 · As of I am setting the the hidden field value on click of submit button after which I need to access the hidden field value in the posted action method. Action() method is proccess on the server-side, so you cannot pass a client-side value to this function as a parameter. The overload signature looks like this: MvcHtmlString HtmlHelper. Apr 5, 2016 · You could probably accomplish this with a ternary statement (e. Net MVC Html. But the problem is in controller, value is not being fetched. i tried to do this by Html. Can someone tell me what I am doing wrong here? Sep 28, 2012 · @using (Html. It has attributes: Model Make Colour RegistrationPlate. Id) <input type="submit" value="Edit" /> } Or you could post via ajax. Let me know if i can achieve this without using JSP or servlets. Here's part of the view. ready tag, or put the script at the bottom of the page -- otherwise the script won't find HiddenField1, as it will not have been loaded into the DOM yet. When I click on Edit link I need to pass the selected Id as well as the CheckBoxes' value also. so how i can force the Url. house, I had tried that solution (from the possible duplicate posts mentioned above) but got this error: CS1928: 'System. getElementById('HiddenInputID'). ActionLink("Search","Search",new {firstname=value) Dec 18, 2014 · The client ID isn't necessarily the same as the server ID (unless you're using CliendIDMode=Static. HtmlHelper<dynamic>' does not contain a definition for 'ActionLink' and the best extension method overload 'System. Pastebin is a website where you can store text online for a set period of time. submit(function { $. Hidden control then I can use that value in something like this var productsList = Model. May 7, 2012 · One solution is to use jQuery to attach a click event which would read the hidden field and append it to the link's href attribute. I can use ActionLink to pass the primary key value like @Html. 4. th:attr="value = ${client. ActionLink but it doesn't work . var elems = []; elems. val()); } Jun 23, 2017 · @Html. You can use HiddenFor directly by the property name of the Model as shown below: Dec 6, 2012 · in a HTML page when you click on a submit button all the input elements inside the form which the submit button resides in will posted to server, but when you click on a anchor (<a> tag ). I need to know how to pass the parameter values into "id" and "memberid". If I wanted to link to the edit URL for a given object, the required URL would be /user/edit/5 for example. One thing, it sounds like what you are trying to do happens at the client, as it depends on interaction with the user (browser), while this question in particular refers to how to get a link to an action that includes a parameter that is rendered on a view on the @chris. Net MVC 3 using a sample application. Hidden("Zpy_moisId", ViewBag. Textbox("value") how to pass above text box value to below action link @Html. View code: Jun 3, 2015 · I have created a texbox. you only send a request with a Get method and without posting any value. Dec 16, 2015 · Then on the 'anotherPage. ActionLink("Action","Controller", new { [email protected]}) Aug 29, 2012 · In the email, I have put this hidden field in order to track the email which I will be sending after some time. Hidden( "exclusionList", Model. In my case, I'm just trying to spit out a URL. Here is the necessary code: Nov 5, 2013 · Is it possible to pass an hidden field value from Razor View to Controller inside or tag? As the field is hidden, it is really a problem to pass its value to the Controller. GoveerNo != null) { @Html. Jan 4, 2013 · How i can retrieve this hidden field value in Controller? By having your controller action an argument with the same name as your hidden field: Aug 29, 2014 · Here I will describe how to post a collection in ASP. HtmlHelper. Action. NET Oct 21, 2010 · In my partial view I am using a HTML. NET I am trying to user @Html. so you must use @Html. Asking for help, clarification, or responding to other answers. I need the Action Link to read the ids from hidden field. e. ActionLink() method. actionlink. EditorFor refer to the Title field of the object, kinda in a random way but it works! @using (Html. Net MVC, is there any way to specify an ActionL Sep 21, 2009 · Also, as other posters have suggested, you may not wish to put the hidden field's value in the query string if you care about it being displayed to the user. The values are getting set in the hidden field, but they are not being passed to the controller from the actionLink. Please let me know how i can achieve this. Action() and retrieve partial view html/js Nov 22, 2012 · This makes the @Html. Thanks In Advance Aug 8, 2013 · I don't think using a RouteValueDictionary to store your model in is the best idea. Hidden helper functions in ASP. Script to set hidden field value-function setHiddenVal() { alert($("#ddlProjectSize :selected"). NET MVC with examples and explanations. I am receiving an id from the controller and saving it in a variable in my view as such @{ string attachmentToFecth = Model. ' Create a hidden variable to pass back a comma-delimited string Response. We will also create multiple types of Action links like: HtmlActionLink without controller name. ActionLink("Download", "#", new { d Sep 16, 2011 · Rather than use pass the value as a querystring you could post the value by changing the edit link to a form with a hidden field for the ID and a submit button (styled like your edit link) @using (Html. H Nov 24, 2011 · Thanks for contributing an answer to Stack Overflow! Please be sure to answer the question. "id" won't do it for you. val($("#ddlProjectSize :selected"). HiddenFor(m => m. ASP. name}" Jan 11, 2012 · In that case you may simply want to replace it with /Get/GetThis or render the url in a hidden field on the page and get the value of the hidden field in your . HiddenFor and Html. ActionLink is an html helper that is rendered on server and simply outputs an anchor tag. Id to a placeholder string, such as "PARENT_ID". ActionLink through javascript? @Steven if this id is in a hidden field it means the The key is to select a value that id would Apr 18, 2013 · as you can see that i am passing a id to my Action , now i need to pass another parameter but i dont want to change route and current situation of link , can i send some something hidden. Name="John"; return View(test); } Let's say I have a class. Apr 30, 2016 · how to pass textbox value to @html. BeginForm("EditBusiness")) { @Html. Provide details and share your research! But avoid …. This article will illustrate how to pass (send) values of Hidden Field created using Html. begin form and submit button in the view. g. ToList(); – Oct 9, 2012 · Possible Duplicate: Razor syntax prevent escaping html in an action link How can I generate link, which contains image, using ASP. ActionLink(“View Movies”, “Index”, “Movies”, new{id=1},null) Where:-View Movies-->String LinkText-Index--> string ActionName-Movies-->string ControllerName-new{id=1}-->(object) Is the parameter values that you want to pass May 26, 2015 · Is there a way to add a Html. LastName, "ActionName","ControllerName") Updated: then do like this, as your Model is IEnumerable: Dec 6, 2016 · Create a variable containing the value of the Url. TextBox Sep 28, 2012 · @using (Html. value = val; return true; } and then code the buttons using the onclick to pass whichever value you'd like: Sep 1, 2014 · The problem is you're trying to represent distinct things as the same thing. And i can not even use [httppost] in my controller. Thanks – Oct 13, 2010 · Having a little trouble and wondered if anyone could help :-) I am trying to pass the value that a user enters into a html. Jul 25, 2018 · C# - How to pass html input value to url. – Aug 14, 2015 · you can use @Html. Address> as the model. Aug 29, 2013 · Thanks for contributing an answer to Stack Overflow! Please be sure to answer the question. ActionLink and I wish to pass multiple parameters to the controller/action. I need to save all values of my model. clientName value still is null; If anyone is interested, solved this issue using following structure (found the answer in another question). Hidden("govern_no", (int)@ViewBag. In index. ActionLink helper. The @Url. HtmlHelper, string, string, string Jul 5, 2019 · Learn how to pass an array using an HTML form hidden element with examples and explanations. Models. Jul 10, 2017 · You are confusing server side code with client side. If you must use ViewBag to pass data to the view, use @Html. In your view, you will need to use @Html. This method Jan 31, 2014 · I have a scaffold list type table in my view. ExclusionList)) The value of of this hidden element is assigned in client side javaScript: exclusionListElement = document. Products. TextBoxFor(x => x. TextFor() instead to manually setup the input field. @using (Html. I would make a model for the partial view, which represents the data you need, i. actionlink, try jquery to pass your textbox value to the controller as: $(function { $('form'). Post a link to the new question here and I will help as much as possible. Select(x => x. ActionLink("Action","Controller", new { [email protected]}) I was also trying to pass the value of a checked radiobutton to a using as a param. EDIT: FINAL SOLUTION: Feb 21, 2011 · HTML5 allows the use of custom attributes prefixed with the phrase "data-" which pass validation without the use of a custom DTD (more info). Action() in order to get the partial view. value = val; return true; } and then code the buttons using the onclick to pass whichever value you'd like: Mar 9, 2016 · You would find this far easier if you use a put the textbox in a form (with FormMethod. GoveerNo) } I want to pass govern_no Hidden value I have a question. You need an action method that looks like this in order to access the parameter: public ActionResult GetThis(string theName) { // manipulate theName return View(); } Jan 14, 2014 · I am trying to open my bootstrap modal on the same page by clicking on the ActionLink and passing a parameter as below: @foreach (Items item in Model) { @Html. As shown below : &lt;%=Html. Generates a hidden form field (anti-forgery token) that is validated when the form is submitted. Jun 2, 2021 · If the target action requires a parameter, you can use an anonymous object to pass parameter values: @Html. Value;. DatePicker) <input type="submit" value="Click Me" /> } if you want to use an anchor you will need to use javascript in order to append the value of the datepicker to the query string. Nov 5, 2009 · Here's a technique: Add a CSS class to the link; Add a CSS class to the body tag of every page, use as many unique values as you need; Edit your CSS file to show/hide the link based on the combination of the body tag class and the class on the link. an inline-if statement) :. ActionLink("Download", "Download", new { applicantId = 1, templateId = 1 }) The applicantId and templateId for the minute are hardcoded, but these values are passed to the Modal via jquery as text values. I am creating an MVC application, where I have this page which displays Events taking place in a particular time. Action link. Dec 2, 2016 · My problem is - I need to get the 2nd dropdown to load from whatever value comes up in the hidden field when the page loads. The other solution is to store the value, if you know what it would be, in ViewData and use it instead of hidden field value. So you can: Add a property "passname" to the model that you use to retrieve the data. Follow Passing hidden field value from view to controller with out using form concept. Zpy_moisId as object) how can i pass parameter from @Html. This controller action shows a partial view as modal dialog. You can use a model with your partial view too, you know. Add a button and in buttons click event access the hidden field value: string myVal = HiddenField. Please help me . Id"])') May 4, 2015 · When specifying asp-controller and asp-action on a link, what's the syntax for also passing an id attribute? E. ActionLink ASP. From that function how can I pass id and tab values to Html. Hidden : @Html. Do not use hidden inputs as a form of security! Jun 1, 2013 · You need to write following code on controller suppose test is model, and Name, Address are field of this model. getElementById("exclusionList"); // Jan 31, 2014 · I have a scaffold list type table in my view. hidden() to go to my controller MVC which my view is : Are you trying to set the value of hidden field by the content of text Jul 30, 2014 · I need that input field display value is "Foo" and after form submission form. Get) and style the submit button to look like a link if that what you want (no scripts required). val()); $("#hdnProjectSize"). You can insert a server tag to get the client ID. ActionLink( string linkText, string actionName, string controllerName, object routeValues, object htmlAttributes ) Aug 17, 2015 · I got tired of banging my head against a wall with the html. $('A[data-id="@item. Above to the table, I have two checkboxes also. Title) <button type="submit">Search</button> } Still couldn't pass input parameter to the URL in the GET. HtmlActionLink with Area. ActionLink(System. In Asp. ajax When they click the ActionLink, I use jQuery to set the values of the ids in a hidden field. May 9, 2013 · Here is my scenario @Html. with an index field. May 20, 2013 · I am very new to MVC and have Novice's knowledge about MVC. push() is a function, therefore it needs and not the [] array-syntax. Html. I don't know what is the problem. You might need to use a form with an editor template and/or hidden fields to send all the model properties. In this example, we will learn how to use Asp . hcdxwae rhhos shmfzl fjrvy tfa fuvg wltuk fzpcmm lnaw kxibc wamonju folm qjz lyvo plbs