Webforms Telerik UI - event optimalizationCheckedChanged event for Dynamically generated Checkbox column in DataGrid(Asp.Net)Telerik MVC: Telerik Menu Drops down Under Telerik GridTelerik ASP.net AJAX RadComboBox retains focus when dropdown is opentelerik ajax panel does not trigger AjaxLoadingPanel when tab is usedTelerik Ajax RadCombobox CheckAllCheck Event not foundNot able to fire the click event for a button inside the Item template in RADorgChartJquery change event not firing in wrapped telerik componentWPF & Telerik RadTreeView: How do I intercept the ItemSelected event on drag?Asp.NET Webforms register.aspx validationtelerik radcombobox Multiselect Checkbox, unchecking a Checkbox hide div
Distributions with simple truncated expectations
Why do these two ways of understanding constant acceleration give different results?
Fat Cantor Set with large complement???
How does Data know about his off switch?
How can you tell apart the pronounciation at the end between the "meine" and "meiner" in the daily spoken situation?
How can I communicate feelings to players without impacting their agency?
Why do Computer Science degrees contain a high proportion of mathematics?
Why does Principal Vagina say, "no relation" after introducing himself?
Does immunity to fear prevent a mummy's Dreadful Glare from paralyzing a character?
Is is possible to externally power my DSLR with the original battery that is connected to the DSLR by means of wires?
Why do military jets sometimes have elevators in a depressed position when parked?
Is it allowed to let the engine of an aircraft idle without a pilot in the plane. (For both helicopters and aeroplanes)
Labeling lines that are not within polygons using field calculator
What would be the effect of a giant magical fireball burning in the ocean?
In the twin paradox does the returning twin also come back permanently length contracted flatter than the twin on Earth?
Moonlight bright enough to see by
If we should encrypt the message rather than the method of transfer, why do we care about wifi security? Is this just security theatre?
Largest number order in string
Generating sequential alphanumeric values that match a certain pattern
Is it safe to pay bills over satellite internet?
Which culture used no personal names?
Prisoner's dilemma formulation for children
Idiom for a situation or event that makes one poor or even poorer?
Does any politician - honestly - want a No Deal Brexit?
Webforms Telerik UI - event optimalization
CheckedChanged event for Dynamically generated Checkbox column in DataGrid(Asp.Net)Telerik MVC: Telerik Menu Drops down Under Telerik GridTelerik ASP.net AJAX RadComboBox retains focus when dropdown is opentelerik ajax panel does not trigger AjaxLoadingPanel when tab is usedTelerik Ajax RadCombobox CheckAllCheck Event not foundNot able to fire the click event for a button inside the Item template in RADorgChartJquery change event not firing in wrapped telerik componentWPF & Telerik RadTreeView: How do I intercept the ItemSelected event on drag?Asp.NET Webforms register.aspx validationtelerik radcombobox Multiselect Checkbox, unchecking a Checkbox hide div
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
At work I have old project which is on WebForms with Telerik UI. I don't know it because I learn newer technologies. The problem is that I have CheckBox which is generated like below. The problem is when I click on CheckBox I have to wait few minutes... It caused by Event OnInit, which trigger always when I click on any control I have on view. This event reloads my view so all data which were on view are re-rendered.
private void AttributeValueListOnItemDataBound(object sender, TreeListItemDataBoundEventArgs e)
//some unnecessary code
if (e.Item is TreeListDataItem)
var item = e.Item as TreeListDataItem;
var data = (AttributeValueListItem)item.DataItem;
var cb = new CheckBox
ID = "ActiveCB",
Checked = data.Active,
AutoPostBack = true
;
if (data.AttributeValueParentID != null)
cb.CheckedChanged += Active_CheckedChanged;
else
cb.CheckedChanged += Active_CheckedChildChanged;
item["Active"].Controls.Add(cb);
item["Description"].Text = data.Description;
item["Prefix"].Text = data.Prefix;
item.Expanded = true;
I expect that in this case, prevent this triggering OnInit event, or maybe you have other solution for prevent long waiting time...
asp.net webforms telerik
add a comment
|
At work I have old project which is on WebForms with Telerik UI. I don't know it because I learn newer technologies. The problem is that I have CheckBox which is generated like below. The problem is when I click on CheckBox I have to wait few minutes... It caused by Event OnInit, which trigger always when I click on any control I have on view. This event reloads my view so all data which were on view are re-rendered.
private void AttributeValueListOnItemDataBound(object sender, TreeListItemDataBoundEventArgs e)
//some unnecessary code
if (e.Item is TreeListDataItem)
var item = e.Item as TreeListDataItem;
var data = (AttributeValueListItem)item.DataItem;
var cb = new CheckBox
ID = "ActiveCB",
Checked = data.Active,
AutoPostBack = true
;
if (data.AttributeValueParentID != null)
cb.CheckedChanged += Active_CheckedChanged;
else
cb.CheckedChanged += Active_CheckedChildChanged;
item["Active"].Controls.Add(cb);
item["Description"].Text = data.Description;
item["Prefix"].Text = data.Prefix;
item.Expanded = true;
I expect that in this case, prevent this triggering OnInit event, or maybe you have other solution for prevent long waiting time...
asp.net webforms telerik
add a comment
|
At work I have old project which is on WebForms with Telerik UI. I don't know it because I learn newer technologies. The problem is that I have CheckBox which is generated like below. The problem is when I click on CheckBox I have to wait few minutes... It caused by Event OnInit, which trigger always when I click on any control I have on view. This event reloads my view so all data which were on view are re-rendered.
private void AttributeValueListOnItemDataBound(object sender, TreeListItemDataBoundEventArgs e)
//some unnecessary code
if (e.Item is TreeListDataItem)
var item = e.Item as TreeListDataItem;
var data = (AttributeValueListItem)item.DataItem;
var cb = new CheckBox
ID = "ActiveCB",
Checked = data.Active,
AutoPostBack = true
;
if (data.AttributeValueParentID != null)
cb.CheckedChanged += Active_CheckedChanged;
else
cb.CheckedChanged += Active_CheckedChildChanged;
item["Active"].Controls.Add(cb);
item["Description"].Text = data.Description;
item["Prefix"].Text = data.Prefix;
item.Expanded = true;
I expect that in this case, prevent this triggering OnInit event, or maybe you have other solution for prevent long waiting time...
asp.net webforms telerik
At work I have old project which is on WebForms with Telerik UI. I don't know it because I learn newer technologies. The problem is that I have CheckBox which is generated like below. The problem is when I click on CheckBox I have to wait few minutes... It caused by Event OnInit, which trigger always when I click on any control I have on view. This event reloads my view so all data which were on view are re-rendered.
private void AttributeValueListOnItemDataBound(object sender, TreeListItemDataBoundEventArgs e)
//some unnecessary code
if (e.Item is TreeListDataItem)
var item = e.Item as TreeListDataItem;
var data = (AttributeValueListItem)item.DataItem;
var cb = new CheckBox
ID = "ActiveCB",
Checked = data.Active,
AutoPostBack = true
;
if (data.AttributeValueParentID != null)
cb.CheckedChanged += Active_CheckedChanged;
else
cb.CheckedChanged += Active_CheckedChildChanged;
item["Active"].Controls.Add(cb);
item["Description"].Text = data.Description;
item["Prefix"].Text = data.Prefix;
item.Expanded = true;
I expect that in this case, prevent this triggering OnInit event, or maybe you have other solution for prevent long waiting time...
asp.net webforms telerik
asp.net webforms telerik
edited Jul 12 at 19:33
marc_s
607k138 gold badges1161 silver badges1293 bronze badges
607k138 gold badges1161 silver badges1293 bronze badges
asked Mar 28 at 21:34
DeeadlineDeeadline
86 bronze badges
86 bronze badges
add a comment
|
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/4.0/"u003ecc by-sa 4.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%2f55407182%2fwebforms-telerik-ui-event-optimalization%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
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%2f55407182%2fwebforms-telerik-ui-event-optimalization%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