Note that there are some explanatory texts on larger screens.

plurals
  1. POKendo Grid Ajax inside Kendo TabStrip Ajax (LoadContentForm) not displaying content
    primarykey
    data
    text
    <p>I want to put an Ajax Kendo Grid inside an Ajax Kendo TabStrip, but the grid never displays any of its values. (Even if the FireBug console indicates that the values have been correctly get...)</p> <p>Is this a known issue ?</p> <p>Thanks in advance.</p> <p>Here is my code : </p> <p>Ajax Kendo TabStrip : </p> <pre><code>@(Html.Kendo().TabStrip() .Name("portailClientsTabStrip") //.HtmlAttributes(new { style="height:100%" }) .Animation(animation =&gt; { animation.Enable(true); animation.Open(config =&gt; { //config.Expand(); config.Fade(FadeDirection.In); config.Duration(AnimationDuration.Fast); }); }) .Items(tabstrip =&gt; { tabstrip.Add().Text("Livraisons") .Selected(true) .LoadContentFrom(Url.Content("Livraison")); tabstrip.Add().Text("Remplissage") .LoadContentFrom(Url.Content("Remplissage")); tabstrip.Add().Text("Expéditions") .LoadContentFrom(Url.Content("Expedition")); tabstrip.Add().Text("Collectes") .LoadContentFrom(Url.Content("Collecte")); tabstrip.Add().Text("Annonces").LoadContentFrom(Url.Content("Annonce")); }) .Events(e=&gt;e .Select("portailClientsTabStripSelectHandler") .Activate("portailClientsTabStripActivate") )) </code></pre> <p>Ajax Kendo Grid inside the partial view Annonce : </p> <pre><code>@(Html.Kendo().Grid&lt;Integraal.Models.Mouvement&gt;() .Name("grilleMouvements") // Préfixe du nom de la grille par l'identifiant de la vue partielle. .Columns(columns =&gt; { columns.Bound(m =&gt; m.mvt_cli_code); columns.Bound(m =&gt; m.mvt_detenteur_code); columns.Bound(m =&gt; m.mvt_date_prev); columns.Bound(m =&gt; m.mvt_date); columns.Bound(m =&gt; m.mvt_prod_code); columns.Bound(m =&gt; m.mvt_quantite); columns.Bound(m =&gt; m.mvt_flag).Visible(false); }) .Navigatable() .Sortable() .Scrollable() .Filterable() .Resizable(resize =&gt; resize.Columns(true)) //Colonnes réglables en largeur .DataSource(dataSource =&gt; dataSource .Ajax() .Read(r =&gt; r.Action("readAnnonces", "PortailClients")) ) .Events(e =&gt; e.DataBound("grilleAnnoncesDataBound"))) </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload