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;
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
add a comment |
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
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
add a comment |
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
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
kendo-grid
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
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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