javascript - How to render data of many models on single view on respective button click -


i using mvc5 , have created model tabledata.cs class contains code below:

namespace webapplication2.models {     public class tabledata1     {         public string name { get; set; }         public string location { get; set; }               public string time { get; set; }     } } 

my controller corresponding is:

namespace webapplication2.controllers {     public class homecontroller : controller     {         // get: home          public actionresult tabledata1()         {             viewbag.nbcolumns = 2;             list<tabledata1> tabledatamodel = new list<tabledata1>();             tabledatamodel.add(new tabledata1()             {                 name = "shekha",                 location = "usa",                                time="12:00pm"             });              return view(tabledatamodel.tolist());         }          } } 

and view is:

@model  ienumerable<webapplication2.models.tabledata1> @{     viewbag.title = "tabledata1";     layout = null; }  <div style="width:1300px;">     <table id="activedevicetable" class="table table-striped table-bordered datatable" cellspacing="0" cellpadding="0" border="0" aria-describedby="activedevicetable_info">         <thead>             <tr role="row">                 <th class="sorting" tabindex="0" rowspan="1" colspan="1" aria-label="name: activate sort column ascending">name</th>                 <th class="sorting" tabindex="0" rowspan="1" colspan="1" aria-label="location: activate sort column ascending">location</th>                               <th class="sorting" tabindex="0" rowspan="1" colspan="1" aria-label="time: activate sort column ascending">time</th>             </tr>         </thead>          <tbody role="alert" aria-live="polite" aria-relevant="all">             <tr>                 @foreach (var item in model)                 {                     <td class="somecssstyle">@item.name</td>                     <td class="somecssstyle">@item.location</td>                                        <td class="somecssstyle">@item.time</td>                 }             </tr>         </tbody>     </table> </div> 

and have div in render table using javascript on button click this:

function firstbuttonclick(el)     {         $('#tab1').bind('click', function ()         {                     var url = 'home/tabledata1';             $.ajax({                 url: url,                 data: {}, //parameters go here in object literal form                 type: 'get',                 datatype: 'json',                 success: function (data) { $('div#thenewview').html(data); },                 error: function () { alert('something bad happened in firstbuttonclick'); }             });             alert("hello1");         });         $('#tab1').trigger('click');     } 

and div in view rendered is:

<div id="thenewview" style="float: left; margin: 5px 2px 2px 5px;">      </div> 

now want ? want create model same fields lets tabledata2.cs , in controller soemhting this:

 public actionresult tabledata2()         {             viewbag.nbcolumns = 2;             list<tabledata2> tabledatamodel = new list<tabledata2>();             tabledatamodel.add(new tabledata2()             {                 name = "ajeet",                 location = "allahbad",                                time = "1:00pm"             });             return view(tabledatamodel.tolist());         } 

now want controller replace data of tabledata1 in tabledata1.cshtml data of tabledata2 controller on button click.

i mean want keep 1 view(tabledata1.cshtml) contains table , want reuse view model classes tabledata1.cs , tabledata2.cshtml .

is possible ? how ?

edit: after stefen suggestion changed controller code this:

   public actionresult tabledata1()         {             viewbag.nbcolumns = 2;             list<tabledata1> tabledatamodel = new list<tabledata1>();             tabledatamodel.add(new tabledata1()             {                 filteracticedevicelist = true,                 filteridledevicelist = false,                                name = "shekha",                 location = "usa",                                time = "12:00pm"             });             tabledatamodel.add(new tabledata1()             {                 filteracticedevicelist=false,                 filteridledevicelist=true,                 name = "ajeet",                 location = "allahbad",                              time = "1:00pm"             });                        return view(tabledatamodel);         } 

i have added 2 filters filteracticedevicelist , filteridledevicelist on true must show data corresponding it's table in tabledata1.cshtml not able understand how write code distinguish table data in firstbuttonclick() , secondbuttonclick() function (in ajax call)on basis of these flags such each button show data corresponding it's true value.

for example in firstbuttonclick() show data corresponding filteracticedevicelist = true table in case consist of name: shekha, location: usa, time =12:00pm.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -