Adding a row to the WebGrid shows data bound error2019 Community Moderator ElectionPassing Data between View ControllersMVC3 WebGrid - Row Idadd row in webgridSet row color in MVC WebGridSelect Row in WEBGRIDChange the background color of the first row in Helper WebGrid MVC without JQueryFormat webgrid column bound to collection?Webgrid not displaying data MVCShow data from multiple tables in MVC WebgridHTML data-attributes in WebGrid rows

Grey hair or white hair

Examples of a statistic that is not independent of sample's distribution?

Force user to remove USB token

Good for you! in Russian

How did Alan Turing break the enigma code using the hint given by the lady in the bar?

How much attack damage does the AC boost from a shield prevent on average?

What is the likely impact of grounding an entire aircraft series?

Accountant/ lawyer will not return my call

If the Captain's screens are out, does he switch seats with the co-pilot?

Can't find the Shader/UVs tab

How to pass a string to a command that expects a file?

Offered promotion but I'm leaving. Should I tell?

Why the color red for the Republican Party

Do f-stop and exposure time perfectly cancel?

Am I not good enough for you?

Is having access to past exams cheating and, if yes, could it be proven just by a good grade?

Single word request: Harming the benefactor

Why does Deadpool say "You're welcome, Canada," after shooting Ryan Reynolds in the end credits?

Low budget alien movie about the Earth being cooked

"One can do his homework in the library"

Best approach to update all entries in a list that is paginated?

The bar has been raised

How much stiffer are 23c tires over 28c?

What wound would be of little consequence to a biped but terrible for a quadruped?



Adding a row to the WebGrid shows data bound error



2019 Community Moderator ElectionPassing Data between View ControllersMVC3 WebGrid - Row Idadd row in webgridSet row color in MVC WebGridSelect Row in WEBGRIDChange the background color of the first row in Helper WebGrid MVC without JQueryFormat webgrid column bound to collection?Webgrid not displaying data MVCShow data from multiple tables in MVC WebgridHTML data-attributes in WebGrid rows










0















My webgrid has 3 columns and all 3 is having dropdownlist. I am cloning the last row and appending it to the webgrid. It appends, and the data is also bound to the newly appended row. But shows view error "A data source must be bound before this operation can be performed." I am sharing the code.
Any help appreciated...



Model



public class HeaderInfo

public List<Header> HeaderModel get; set;

public class Header

public SelectList Xaxis get; set;
public SelectList Yaxis get; set;
public SelectList Zaxis get; set;

public class XStatus

public int ID get; set;
public string StatusName get; set;

public class YStatus

public int ID get; set;
public string StatusName get; set;

public class ZStatus

public int ID get; set;
public string StatusName get; set;



Controller



public class GraphController : Controller
{
// GET: Graph
public ActionResult Index()

// HeaderInfo h = new HeaderInfo();
PlotModel m = new PlotModel();
m.h.HeaderModel = HeaderDetails();
return View(m);

public List<Header> HeaderDetails()

List<Header> obj = new List<Header>();
obj.Add(new Header Xaxis = GetXfield(), Yaxis = GetYfield(), Zaxis = GetZfield() );
return obj;

public SelectList GetXfield()

List<XStatus> status = new List<XStatus>();
status.Add(new XStatus ID = 1, StatusName = "aaa" );
status.Add(new XStatus ID = 2, StatusName = "aaa" );
status.Add(new XStatus ID = 3, StatusName = "aaa" );
status.Add(new XStatus ID = 4, StatusName = "bbb" );
status.Add(new XStatus ID = 5, StatusName = "aaa" );
status.Add(new XStatus ID = 6, StatusName = "nnn" );
status.Add(new XStatus ID = 7, StatusName = "mmm" );
SelectList obj = new SelectList(status, "ID", "StatusName");
return obj;

public SelectList GetYfield()

List<XStatus> status = new List<XStatus>();
status.Add(new XStatus ID = 1, StatusName = "aaa" );
status.Add(new XStatus ID = 2, StatusName = "aaa" );
status.Add(new XStatus ID = 3, StatusName = "aaa" );
status.Add(new XStatus ID = 4, StatusName = "bbb" );
status.Add(new XStatus ID = 5, StatusName = "aaa" );
status.Add(new XStatus ID = 6, StatusName = "nnn" );
status.Add(new XStatus ID = 7, StatusName = "mmm" );
SelectList obj = new SelectList(status, "ID", "StatusName");
return obj;

public SelectList GetZfield()

List<XStatus> status = new List<XStatus>();
status.Add(new XStatus ID = 1, StatusName = "aaa" );
status.Add(new XStatus ID = 2, StatusName = "aaa" );
status.Add(new XStatus ID = 3, StatusName = "aaa" );
status.Add(new XStatus ID = 4, StatusName = "bbb" );
status.Add(new XStatus ID = 5, StatusName = "aaa" );
status.Add(new XStatus ID = 6, StatusName = "nnn" );
status.Add(new XStatus ID = 7, StatusName = "mmm" );
SelectList obj = new SelectList(status, "ID", "StatusName");
return obj;



View






<script type="text/javascript">
$('#clickToAdd').click(function ()

var newrow = $("#grid1 tbody tr:last").clone();
$("#grid1 tbody").append(newrow);
)
</script>

@
ViewBag.Title = "title";
Layout = "~/Views/Shared/_Layout.cshtml";
WebGrid g_style = new WebGrid(source:Model.h.HeaderModel);

<div class="row" id="grid1">

@g_style.GetHtml(
tableStyle:"gridTable",
headerStyle: "gridHead",
footerStyle: "gridFooter",
rowStyle: "gridRow", alternatingRowStyle: "gridAltRow",

columns: g_style.Columns(
g_style.Column(header:"Xaxis", format:@item=>Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Xaxis)),
g_style.Column(header: "Yaxis", format: @item => Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Yaxis)),
g_style.Column(header: "Zaxis", format: @item => Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Zaxis))
))

</div><input type="submit" value="Add new Trace" id="clickToAdd" />












share|improve this question


























    0















    My webgrid has 3 columns and all 3 is having dropdownlist. I am cloning the last row and appending it to the webgrid. It appends, and the data is also bound to the newly appended row. But shows view error "A data source must be bound before this operation can be performed." I am sharing the code.
    Any help appreciated...



    Model



    public class HeaderInfo

    public List<Header> HeaderModel get; set;

    public class Header

    public SelectList Xaxis get; set;
    public SelectList Yaxis get; set;
    public SelectList Zaxis get; set;

    public class XStatus

    public int ID get; set;
    public string StatusName get; set;

    public class YStatus

    public int ID get; set;
    public string StatusName get; set;

    public class ZStatus

    public int ID get; set;
    public string StatusName get; set;



    Controller



    public class GraphController : Controller
    {
    // GET: Graph
    public ActionResult Index()

    // HeaderInfo h = new HeaderInfo();
    PlotModel m = new PlotModel();
    m.h.HeaderModel = HeaderDetails();
    return View(m);

    public List<Header> HeaderDetails()

    List<Header> obj = new List<Header>();
    obj.Add(new Header Xaxis = GetXfield(), Yaxis = GetYfield(), Zaxis = GetZfield() );
    return obj;

    public SelectList GetXfield()

    List<XStatus> status = new List<XStatus>();
    status.Add(new XStatus ID = 1, StatusName = "aaa" );
    status.Add(new XStatus ID = 2, StatusName = "aaa" );
    status.Add(new XStatus ID = 3, StatusName = "aaa" );
    status.Add(new XStatus ID = 4, StatusName = "bbb" );
    status.Add(new XStatus ID = 5, StatusName = "aaa" );
    status.Add(new XStatus ID = 6, StatusName = "nnn" );
    status.Add(new XStatus ID = 7, StatusName = "mmm" );
    SelectList obj = new SelectList(status, "ID", "StatusName");
    return obj;

    public SelectList GetYfield()

    List<XStatus> status = new List<XStatus>();
    status.Add(new XStatus ID = 1, StatusName = "aaa" );
    status.Add(new XStatus ID = 2, StatusName = "aaa" );
    status.Add(new XStatus ID = 3, StatusName = "aaa" );
    status.Add(new XStatus ID = 4, StatusName = "bbb" );
    status.Add(new XStatus ID = 5, StatusName = "aaa" );
    status.Add(new XStatus ID = 6, StatusName = "nnn" );
    status.Add(new XStatus ID = 7, StatusName = "mmm" );
    SelectList obj = new SelectList(status, "ID", "StatusName");
    return obj;

    public SelectList GetZfield()

    List<XStatus> status = new List<XStatus>();
    status.Add(new XStatus ID = 1, StatusName = "aaa" );
    status.Add(new XStatus ID = 2, StatusName = "aaa" );
    status.Add(new XStatus ID = 3, StatusName = "aaa" );
    status.Add(new XStatus ID = 4, StatusName = "bbb" );
    status.Add(new XStatus ID = 5, StatusName = "aaa" );
    status.Add(new XStatus ID = 6, StatusName = "nnn" );
    status.Add(new XStatus ID = 7, StatusName = "mmm" );
    SelectList obj = new SelectList(status, "ID", "StatusName");
    return obj;



    View






    <script type="text/javascript">
    $('#clickToAdd').click(function ()

    var newrow = $("#grid1 tbody tr:last").clone();
    $("#grid1 tbody").append(newrow);
    )
    </script>

    @
    ViewBag.Title = "title";
    Layout = "~/Views/Shared/_Layout.cshtml";
    WebGrid g_style = new WebGrid(source:Model.h.HeaderModel);

    <div class="row" id="grid1">

    @g_style.GetHtml(
    tableStyle:"gridTable",
    headerStyle: "gridHead",
    footerStyle: "gridFooter",
    rowStyle: "gridRow", alternatingRowStyle: "gridAltRow",

    columns: g_style.Columns(
    g_style.Column(header:"Xaxis", format:@item=>Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Xaxis)),
    g_style.Column(header: "Yaxis", format: @item => Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Yaxis)),
    g_style.Column(header: "Zaxis", format: @item => Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Zaxis))
    ))

    </div><input type="submit" value="Add new Trace" id="clickToAdd" />












    share|improve this question
























      0












      0








      0








      My webgrid has 3 columns and all 3 is having dropdownlist. I am cloning the last row and appending it to the webgrid. It appends, and the data is also bound to the newly appended row. But shows view error "A data source must be bound before this operation can be performed." I am sharing the code.
      Any help appreciated...



      Model



      public class HeaderInfo

      public List<Header> HeaderModel get; set;

      public class Header

      public SelectList Xaxis get; set;
      public SelectList Yaxis get; set;
      public SelectList Zaxis get; set;

      public class XStatus

      public int ID get; set;
      public string StatusName get; set;

      public class YStatus

      public int ID get; set;
      public string StatusName get; set;

      public class ZStatus

      public int ID get; set;
      public string StatusName get; set;



      Controller



      public class GraphController : Controller
      {
      // GET: Graph
      public ActionResult Index()

      // HeaderInfo h = new HeaderInfo();
      PlotModel m = new PlotModel();
      m.h.HeaderModel = HeaderDetails();
      return View(m);

      public List<Header> HeaderDetails()

      List<Header> obj = new List<Header>();
      obj.Add(new Header Xaxis = GetXfield(), Yaxis = GetYfield(), Zaxis = GetZfield() );
      return obj;

      public SelectList GetXfield()

      List<XStatus> status = new List<XStatus>();
      status.Add(new XStatus ID = 1, StatusName = "aaa" );
      status.Add(new XStatus ID = 2, StatusName = "aaa" );
      status.Add(new XStatus ID = 3, StatusName = "aaa" );
      status.Add(new XStatus ID = 4, StatusName = "bbb" );
      status.Add(new XStatus ID = 5, StatusName = "aaa" );
      status.Add(new XStatus ID = 6, StatusName = "nnn" );
      status.Add(new XStatus ID = 7, StatusName = "mmm" );
      SelectList obj = new SelectList(status, "ID", "StatusName");
      return obj;

      public SelectList GetYfield()

      List<XStatus> status = new List<XStatus>();
      status.Add(new XStatus ID = 1, StatusName = "aaa" );
      status.Add(new XStatus ID = 2, StatusName = "aaa" );
      status.Add(new XStatus ID = 3, StatusName = "aaa" );
      status.Add(new XStatus ID = 4, StatusName = "bbb" );
      status.Add(new XStatus ID = 5, StatusName = "aaa" );
      status.Add(new XStatus ID = 6, StatusName = "nnn" );
      status.Add(new XStatus ID = 7, StatusName = "mmm" );
      SelectList obj = new SelectList(status, "ID", "StatusName");
      return obj;

      public SelectList GetZfield()

      List<XStatus> status = new List<XStatus>();
      status.Add(new XStatus ID = 1, StatusName = "aaa" );
      status.Add(new XStatus ID = 2, StatusName = "aaa" );
      status.Add(new XStatus ID = 3, StatusName = "aaa" );
      status.Add(new XStatus ID = 4, StatusName = "bbb" );
      status.Add(new XStatus ID = 5, StatusName = "aaa" );
      status.Add(new XStatus ID = 6, StatusName = "nnn" );
      status.Add(new XStatus ID = 7, StatusName = "mmm" );
      SelectList obj = new SelectList(status, "ID", "StatusName");
      return obj;



      View






      <script type="text/javascript">
      $('#clickToAdd').click(function ()

      var newrow = $("#grid1 tbody tr:last").clone();
      $("#grid1 tbody").append(newrow);
      )
      </script>

      @
      ViewBag.Title = "title";
      Layout = "~/Views/Shared/_Layout.cshtml";
      WebGrid g_style = new WebGrid(source:Model.h.HeaderModel);

      <div class="row" id="grid1">

      @g_style.GetHtml(
      tableStyle:"gridTable",
      headerStyle: "gridHead",
      footerStyle: "gridFooter",
      rowStyle: "gridRow", alternatingRowStyle: "gridAltRow",

      columns: g_style.Columns(
      g_style.Column(header:"Xaxis", format:@item=>Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Xaxis)),
      g_style.Column(header: "Yaxis", format: @item => Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Yaxis)),
      g_style.Column(header: "Zaxis", format: @item => Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Zaxis))
      ))

      </div><input type="submit" value="Add new Trace" id="clickToAdd" />












      share|improve this question














      My webgrid has 3 columns and all 3 is having dropdownlist. I am cloning the last row and appending it to the webgrid. It appends, and the data is also bound to the newly appended row. But shows view error "A data source must be bound before this operation can be performed." I am sharing the code.
      Any help appreciated...



      Model



      public class HeaderInfo

      public List<Header> HeaderModel get; set;

      public class Header

      public SelectList Xaxis get; set;
      public SelectList Yaxis get; set;
      public SelectList Zaxis get; set;

      public class XStatus

      public int ID get; set;
      public string StatusName get; set;

      public class YStatus

      public int ID get; set;
      public string StatusName get; set;

      public class ZStatus

      public int ID get; set;
      public string StatusName get; set;



      Controller



      public class GraphController : Controller
      {
      // GET: Graph
      public ActionResult Index()

      // HeaderInfo h = new HeaderInfo();
      PlotModel m = new PlotModel();
      m.h.HeaderModel = HeaderDetails();
      return View(m);

      public List<Header> HeaderDetails()

      List<Header> obj = new List<Header>();
      obj.Add(new Header Xaxis = GetXfield(), Yaxis = GetYfield(), Zaxis = GetZfield() );
      return obj;

      public SelectList GetXfield()

      List<XStatus> status = new List<XStatus>();
      status.Add(new XStatus ID = 1, StatusName = "aaa" );
      status.Add(new XStatus ID = 2, StatusName = "aaa" );
      status.Add(new XStatus ID = 3, StatusName = "aaa" );
      status.Add(new XStatus ID = 4, StatusName = "bbb" );
      status.Add(new XStatus ID = 5, StatusName = "aaa" );
      status.Add(new XStatus ID = 6, StatusName = "nnn" );
      status.Add(new XStatus ID = 7, StatusName = "mmm" );
      SelectList obj = new SelectList(status, "ID", "StatusName");
      return obj;

      public SelectList GetYfield()

      List<XStatus> status = new List<XStatus>();
      status.Add(new XStatus ID = 1, StatusName = "aaa" );
      status.Add(new XStatus ID = 2, StatusName = "aaa" );
      status.Add(new XStatus ID = 3, StatusName = "aaa" );
      status.Add(new XStatus ID = 4, StatusName = "bbb" );
      status.Add(new XStatus ID = 5, StatusName = "aaa" );
      status.Add(new XStatus ID = 6, StatusName = "nnn" );
      status.Add(new XStatus ID = 7, StatusName = "mmm" );
      SelectList obj = new SelectList(status, "ID", "StatusName");
      return obj;

      public SelectList GetZfield()

      List<XStatus> status = new List<XStatus>();
      status.Add(new XStatus ID = 1, StatusName = "aaa" );
      status.Add(new XStatus ID = 2, StatusName = "aaa" );
      status.Add(new XStatus ID = 3, StatusName = "aaa" );
      status.Add(new XStatus ID = 4, StatusName = "bbb" );
      status.Add(new XStatus ID = 5, StatusName = "aaa" );
      status.Add(new XStatus ID = 6, StatusName = "nnn" );
      status.Add(new XStatus ID = 7, StatusName = "mmm" );
      SelectList obj = new SelectList(status, "ID", "StatusName");
      return obj;



      View






      <script type="text/javascript">
      $('#clickToAdd').click(function ()

      var newrow = $("#grid1 tbody tr:last").clone();
      $("#grid1 tbody").append(newrow);
      )
      </script>

      @
      ViewBag.Title = "title";
      Layout = "~/Views/Shared/_Layout.cshtml";
      WebGrid g_style = new WebGrid(source:Model.h.HeaderModel);

      <div class="row" id="grid1">

      @g_style.GetHtml(
      tableStyle:"gridTable",
      headerStyle: "gridHead",
      footerStyle: "gridFooter",
      rowStyle: "gridRow", alternatingRowStyle: "gridAltRow",

      columns: g_style.Columns(
      g_style.Column(header:"Xaxis", format:@item=>Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Xaxis)),
      g_style.Column(header: "Yaxis", format: @item => Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Yaxis)),
      g_style.Column(header: "Zaxis", format: @item => Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Zaxis))
      ))

      </div><input type="submit" value="Add new Trace" id="clickToAdd" />








      <script type="text/javascript">
      $('#clickToAdd').click(function ()

      var newrow = $("#grid1 tbody tr:last").clone();
      $("#grid1 tbody").append(newrow);
      )
      </script>

      @
      ViewBag.Title = "title";
      Layout = "~/Views/Shared/_Layout.cshtml";
      WebGrid g_style = new WebGrid(source:Model.h.HeaderModel);

      <div class="row" id="grid1">

      @g_style.GetHtml(
      tableStyle:"gridTable",
      headerStyle: "gridHead",
      footerStyle: "gridFooter",
      rowStyle: "gridRow", alternatingRowStyle: "gridAltRow",

      columns: g_style.Columns(
      g_style.Column(header:"Xaxis", format:@item=>Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Xaxis)),
      g_style.Column(header: "Yaxis", format: @item => Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Yaxis)),
      g_style.Column(header: "Zaxis", format: @item => Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Zaxis))
      ))

      </div><input type="submit" value="Add new Trace" id="clickToAdd" />





      <script type="text/javascript">
      $('#clickToAdd').click(function ()

      var newrow = $("#grid1 tbody tr:last").clone();
      $("#grid1 tbody").append(newrow);
      )
      </script>

      @
      ViewBag.Title = "title";
      Layout = "~/Views/Shared/_Layout.cshtml";
      WebGrid g_style = new WebGrid(source:Model.h.HeaderModel);

      <div class="row" id="grid1">

      @g_style.GetHtml(
      tableStyle:"gridTable",
      headerStyle: "gridHead",
      footerStyle: "gridFooter",
      rowStyle: "gridRow", alternatingRowStyle: "gridAltRow",

      columns: g_style.Columns(
      g_style.Column(header:"Xaxis", format:@item=>Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Xaxis)),
      g_style.Column(header: "Yaxis", format: @item => Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Yaxis)),
      g_style.Column(header: "Zaxis", format: @item => Html.DropDownList("value", (IEnumerable<SelectListItem>)Model.h.HeaderModel[0].Zaxis))
      ))

      </div><input type="submit" value="Add new Trace" id="clickToAdd" />






      model-view-controller webgrid






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 7 at 7:38









      LaxLax

      13




      13






















          0






          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',
          autoActivateHeartbeat: false,
          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
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55038415%2fadding-a-row-to-the-webgrid-shows-data-bound-error%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55038415%2fadding-a-row-to-the-webgrid-shows-data-bound-error%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

          Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

          Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

          How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page