Kendo Grid detailInit does not give consistent resultsHow to bind a Kendo grid to a dynamic datatableKendo grid : Slow performance issueGet first cell data in child grid of kendo hierachy gridHow to expand all rows at page load in Kendo UI Grid?JSON returned, but Kendo Grid does not display dataKendo Grid - Group by column functionality is not displaying all in one pageBinding a Model class object to Kendo Grid using JSON resultload jquery kendo grid based on search textbox not in page loadKendo grid retrieves old data when groupingkendo hierarchy doesn't show the data of details grid for the second time clicking

If Trump gets impeached, how long would Pence be president?

Old French song lyrics with the word "baiser."

Where to find an interactive PDF or HTML version of the tex.web documentation?

Unethical behavior : should I report it?

Does academia have a lazy work culture?

How to tar a list of directories only if they exist

If my pay period is split between 2 calendar years, which tax year do I file them in?

Use cases for M-0 & C-0?

To find islands of 1 and 0 in matrix

Why can't my huge trees be chopped down?

Decreasing star count

How to check what is edible on an alien world?

Is this photo showing a woman standing in the nude before teenagers real?

Did the IBM PC use the 8088's NMI line?

Did the meaning of "significant" change in the 20th century?

Why is 'n' preferred over "n" for output streams?

Are there any examples of technologies have been lost over time?

Why is the number of local variables used in a Java bytecode method not the most economical?

Is a topological space considered to be a class in set theory?

What is the most efficient way to write 'for' loops in Matlab?

Isolated audio without a transformer

Why didn't Britain or any other European power colonise Abyssinia/Ethiopia before 1936?

What do I do with a party that is much stronger than their level?

Are the named pipe created by `mknod` and the FIFO created by `mkfifo` equivalent?



Kendo Grid detailInit does not give consistent results


How to bind a Kendo grid to a dynamic datatableKendo grid : Slow performance issueGet first cell data in child grid of kendo hierachy gridHow to expand all rows at page load in Kendo UI Grid?JSON returned, but Kendo Grid does not display dataKendo Grid - Group by column functionality is not displaying all in one pageBinding a Model class object to Kendo Grid using JSON resultload jquery kendo grid based on search textbox not in page loadKendo grid retrieves old data when groupingkendo hierarchy doesn't show the data of details grid for the second time clicking






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have added a Child row to my Kendo Grid rows that shows the results of a database call (JSON formatted results) for each row. My Grid is populated from paramaters from several drop-down search filters on the page, and is populated on Load with default results. My problem is that the detailInit code shows the given output records ONLY ON ODD ITERATIONS OF REFRESHING THE GRID. That is, the child row function works on the first page load...but does not work after the Search button has refreshed the grid/page. If the Search button is clicked a second time (third load) the child row function works. So oddly, the function works only on the 1,3,5,7 times, and fails on 2,4,6, etc. I've tested these scenarios and this really seems to be what is occurring. This is very odd, and I don't know if there is something going on with the underlying Kendo framework.



Anyone seen this issue before?










share|improve this question






















  • I was able to work around the issue by adding a function to the detailExpand method when creating the KendoGrid. In other grids on other pages, I did not need to define detailExpand, but adding this function solved the problem. NB I did not need to define detailCollapse, that worked correctly. More info here: telerik.com/forums/grid-detailexpand-on-selection

    – user1399233
    Mar 27 at 14:06

















0















I have added a Child row to my Kendo Grid rows that shows the results of a database call (JSON formatted results) for each row. My Grid is populated from paramaters from several drop-down search filters on the page, and is populated on Load with default results. My problem is that the detailInit code shows the given output records ONLY ON ODD ITERATIONS OF REFRESHING THE GRID. That is, the child row function works on the first page load...but does not work after the Search button has refreshed the grid/page. If the Search button is clicked a second time (third load) the child row function works. So oddly, the function works only on the 1,3,5,7 times, and fails on 2,4,6, etc. I've tested these scenarios and this really seems to be what is occurring. This is very odd, and I don't know if there is something going on with the underlying Kendo framework.



Anyone seen this issue before?










share|improve this question






















  • I was able to work around the issue by adding a function to the detailExpand method when creating the KendoGrid. In other grids on other pages, I did not need to define detailExpand, but adding this function solved the problem. NB I did not need to define detailCollapse, that worked correctly. More info here: telerik.com/forums/grid-detailexpand-on-selection

    – user1399233
    Mar 27 at 14:06













0












0








0








I have added a Child row to my Kendo Grid rows that shows the results of a database call (JSON formatted results) for each row. My Grid is populated from paramaters from several drop-down search filters on the page, and is populated on Load with default results. My problem is that the detailInit code shows the given output records ONLY ON ODD ITERATIONS OF REFRESHING THE GRID. That is, the child row function works on the first page load...but does not work after the Search button has refreshed the grid/page. If the Search button is clicked a second time (third load) the child row function works. So oddly, the function works only on the 1,3,5,7 times, and fails on 2,4,6, etc. I've tested these scenarios and this really seems to be what is occurring. This is very odd, and I don't know if there is something going on with the underlying Kendo framework.



Anyone seen this issue before?










share|improve this question














I have added a Child row to my Kendo Grid rows that shows the results of a database call (JSON formatted results) for each row. My Grid is populated from paramaters from several drop-down search filters on the page, and is populated on Load with default results. My problem is that the detailInit code shows the given output records ONLY ON ODD ITERATIONS OF REFRESHING THE GRID. That is, the child row function works on the first page load...but does not work after the Search button has refreshed the grid/page. If the Search button is clicked a second time (third load) the child row function works. So oddly, the function works only on the 1,3,5,7 times, and fails on 2,4,6, etc. I've tested these scenarios and this really seems to be what is occurring. This is very odd, and I don't know if there is something going on with the underlying Kendo framework.



Anyone seen this issue before?







kendo-grid






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 26 at 18:42









user1399233user1399233

381 silver badge8 bronze badges




381 silver badge8 bronze badges












  • I was able to work around the issue by adding a function to the detailExpand method when creating the KendoGrid. In other grids on other pages, I did not need to define detailExpand, but adding this function solved the problem. NB I did not need to define detailCollapse, that worked correctly. More info here: telerik.com/forums/grid-detailexpand-on-selection

    – user1399233
    Mar 27 at 14:06

















  • I was able to work around the issue by adding a function to the detailExpand method when creating the KendoGrid. In other grids on other pages, I did not need to define detailExpand, but adding this function solved the problem. NB I did not need to define detailCollapse, that worked correctly. More info here: telerik.com/forums/grid-detailexpand-on-selection

    – user1399233
    Mar 27 at 14:06
















I was able to work around the issue by adding a function to the detailExpand method when creating the KendoGrid. In other grids on other pages, I did not need to define detailExpand, but adding this function solved the problem. NB I did not need to define detailCollapse, that worked correctly. More info here: telerik.com/forums/grid-detailexpand-on-selection

– user1399233
Mar 27 at 14:06





I was able to work around the issue by adding a function to the detailExpand method when creating the KendoGrid. In other grids on other pages, I did not need to define detailExpand, but adding this function solved the problem. NB I did not need to define detailCollapse, that worked correctly. More info here: telerik.com/forums/grid-detailexpand-on-selection

– user1399233
Mar 27 at 14:06












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%2f55364208%2fkendo-grid-detailinit-does-not-give-consistent-results%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




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















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%2f55364208%2fkendo-grid-detailinit-does-not-give-consistent-results%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

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현