When clicking on Insert-button, it does whatever it's suppose to do. But I don't want user to be able to click the button more than once and therefore I want to disable it once you press it.
<asp:Button ID="Insert" runat="server" Text="Send" OnClick="Insert_OnClick"
OnClientClick="this.disabled=true; showLoading(this);" />
When combining Insert_OnClick and "disable", the function Insert_OnClick wont run, because it somehow disable the button first and therefore the code-behind function wont run for that reason.
I also tried to disable to button itself in showLoading js-function, same behavior.
Any idea how to make the code-behind function run as the button get disabled?
You need to disable it in code behind. Even if you did disable it after the click, the changes made with javascript would still be undone after PostBack.
protected void Button1_Click(object sender, EventArgs e)
{
Insert.Enabled = false;
}
Or set a timeout on the OnClientClick? Maybe that will work.
OnClientClick="setTimeout(function () { this.disabled=true; }, 10);"
If possible, I would change the Submit behavior.
the problem with that approach is that the front end code takes place before the back end submit and if you disable the button before the back end submit then it won't be able to call the back end function.
Instead i would use different approaches, like consuming a webMethod or submiting the whole form .
with the web method you would be able to play a little bit with the front end while the back end finishes processing
With the whole submit you'll have to play with the page_load Event
Related
I'm new to JQuery Mobile so excuse me for this probably easy question.
I have a button:
<a id="btnSort" href=# data-role="button"
runat="server" onclick="Click_btnSort">Sort</a>
and code-behind event handler:
protected void Click_btnSort(object sender, EventArgs e)
{
...
}
I've got a breakpoint at the beginning of this method, however it does not fire when I click on the button.
PS. I'm not using any field validators.
Any suggestions?
The reason your event is nog firing is because you use a html a-element, that element does not trigger a postback (maybe it does when you set the elements autopostback proerty to true, not sure if this works for a-elements).
When you want to use the ASP.NET button click event in code behind (to do server side stuff when clicking), you probably better use a ASP:Button or LinkButton element, which works out of the box.
When you want to use a client side click event (for example with jQuery, to do client side stuff when clicking), you probably better add an event listener to the element like this:
$(document).on('click', '#btnSort', function () {
// client side stuff here
});
EDIT:
See this for basic client side event binding with jQuery. If this does not look familiar, please read about JavaScript / jQuery basics, it will be worth the time
http://jsfiddle.net/6mYQN/1/
As <a> tag is not related to serverside controls so I suppose that can't happen like that way.
your code even with run at server is still will look for the Click_btnSort in javascript function no the one in code behind so you should add a function in script/javascript tag with the name you will call in onclick event.
Although this is an old post what you can do is create a
<asp:Button ID="btnServerSort" style="display:none;" runat="server" Text="SORT" OnCommand="Click_btnServerSort" ..>
with an associated server side event.
Then modify the code as follow
<a id="btnSort" href=# data-role="button" data-ajax="false" runat="server" onserverclick="Click_btnServerSort" >Sort</a>
I hope this helps.
How can I make this run at server?
javascript:
function confirm_delete()
{
if (confirm("Are you sure you want to delete?")==true)
return true;
else
return false;
}
asp
div.Attributes.Add("onclick", "return confirm_delete();");
To capture an event at the server side, you need to use runat="server":
<form runat="server">
<asp:Button id="button1" Text="Click me!" runat="server" OnClick="confirm_delete" />
</form>
The event handler itself needs to be in the code behind. I don't remember if JScript is supported in ASP.net but confirm definitely isn't.
To have this run on the server, you would want to refactor your application. You would need the confirm_delete function to render the page with a form that confirms their action. This isn't so bad because you can have it there already just hidden. confirm_delete would hide the normal content and show the confirmation form. The confirmation form would need to have "OK" or cancel buttons, also hooked to back end event handlers that either execute the deletion (I assume this is where the server OnClick is already wired) or take you back to the full page view.
It's much more complex than a JavaScript confirm popup but its not too awful to do.
i have an updatepanel in my asp.net web page. I want to trigger the updatepanel within a javascript function insead of triggering with a button.
In order to do that, i used __doPostBack('myUpdatePanel', ''); function. But i think it causes the whole page postback. My document.ready function is also executed when i call this function. I may be missing some points.
Is there any other way to trigger updatepanel within a javascript function?
I think if you put a hidden button inside the update panel and you can use the javascript to fire the click of this button, it will do what you want.
<script type="text/javascript">
function Update_UpdatePaanel() {
document.getElementById('<%= YourButton.ClientID %>').click()
}
</script>
The button MUST be inside a hidden div and DON'T set visibile="false" because if you set it to false, the control will not render and the javascript will produce errors.
<div style="display:none">
<asp:Button ID="YourButton" runat="server" />
</div>
Just create a javascript function and execute the generated postback event:
<%=ClientScript.GetPostBackEventReference(myUpdatePanel, "")%>
The above statement is put on your aspx page, and it references the exact same code generated from the server to cause a postback for your panel. You can use it by putting it inside a function on the client side:
function fncUpdatePanel () {
<%=ClientScript.GetPostBackEventReference(myUpdatePanel, "")%>;
}
Then you can attach that function to any event on your page (even a mouseover event). This example uses a server side to attach the event:
myUpdatePanel.attributes('onmouseover', 'fncUpdatePanel()')
I have a asp.net wizard with back, next, cancel buttons. I have causes validation set to true on the next, false on the back and cancel buttons. This was working fine until the product owner wanted to have block ui enabled on the back button, since posts sometimes were slow. As usual, I did this:
$("[id$=_myBackButton]").click(function () {
// call func to enable block ui.
enableBlockUI();
return true;
});
This would work fine until the following occurred. If, for example, on the second step, the user clicks the next button without filling out all required text boxes, client side validation would occur. Now, if user wishes to go to the previous step and presses the back button, block ui is enabled and a post back is not fired. Because I added a JQuery click event and perhaps I overrode the causesvalidation.
So, how can I get the back button to work and proceed to the previous step?
Instead of adding a click event to _myBackButton try a class name. So add CssClass="_myBackButton" (if an ASP.NET control) and then change your jQuery to:
$("._myBackButton").click(function () {
// call func to enable block ui.
enableBlockUI();
});
I have a DropDownList that fires off some server-side databinding in its OnSelectedIndexChanged event.
<asp:DropDownList ID="ddlGroup" runat="server"
AutoPostBack="True" OnSelectedIndexChanged="SelectGroup" />
Elsewhere in the page, some JavaScript opens a popup. When the popup is filled out and submitted, I want to use JavaScript to fire that OnSelectedIndexChanged event in the opener page. I found some other code that does something similar:
if (window.opener != null ) {
var cf = window.opener.document.forms['aspnetForm'];
if (!cf) {
cf = window.opener.document.aspnetForm;
}
cf.__EVENTTARGET.value = "prAdded";
cf.__EVENTARGUMENT.value = "winClosed";
cf.submit();
}
I think this is what I'm looking for, but I'm not sure what should go in the EVENTTARGET and EVENTARGUMENT parts, or even if I need those at all. I want to specifically fire the OnSelectedIndexChanged event handler for ddlGroup. Is this possible/practical?
Secondary question: Can I make the parent page refresh AFTER I run server-side code in the popup?
Eh, you could do it that way, but I'd just use __doPostback() instead. That sets __EVENTTARGET and __EVENTARGUMENT to the two parameters, and assuming your first parameter is the UniqueID of an UpdatePanel, causes just that UpdatePanel to refresh.
So either you can set things up so refreshing the updatepanel does what you want to happen, or you can check those values on postback -- Request.Form["__EVENTTARGET"] ... and go from there.