Calling C# Code From A Telerik Radconfirm?
Jul 20, 2010
Is it possible to Call C# code from a Telerik radconfirm? I can make it call Javascript, but no server side code. I want the user to click a button which gives them a popupbox (radconfirm). With the radconfirm - if the user selects "yes" the c# code will be executed, if they click "cancel" no code will be executed
<asp:Button
ID="button1"
runat="server"
CssClass="resetOk"
Text="OK"
OnClientClick="radconfirm('<h3 style='color: #333399;'>
Are you sure you want to reset this budget?</h3>',confirmCallBackFn,
330, 100,null,'Confirm Reset'); return false;"
/>
View 3 Replies
Similar Messages:
Feb 5, 2010
What's the simplest way to add a new row to a Telerik RadGrid in ASP.NET from code behind?
View 2 Replies
Nov 3, 2010
foreach (Control control in ContentPlaceHolder1.Controls)
{
if(typeof(Control).Equals(Telerik.Web.UI.RadEditor))
{
label1.Visible = true; label1.Text = "dhchk";
// control.CssFiles.Add("~/styles/myStyle.css");
}
}
Error;-
'Telerik.Web.UI.RadEditor' is a 'type', which is not valid in the given context
Also, is this the correct way to add CSS class to radEditor controls ??
control.CssFiles.Add("~/styles/myStyle.css");
I actually wanna add 3-4 customized classes..how to do that?
also I was wondering if I can add some javascript or something in my Master page that will detect the ALL the radEditor controls and set their css classes ? don't know much of Javascript..how can that be made possible? how do I go about that? but first I want css classes to be set in code behind..what's wrong with the code?
[EDIT]
@Geek..I tried calling like this..is it correct?
Control c = new Control();
DoSomething(c);
now its giving this error in the method:-
The type or namespace name 'c' could not be found (are you missing a using directive or an assembly reference?)
[EDIT]
I do have this namespace added "using System.Web.UI.WebControls;" why this error ??
View 1 Replies
Mar 8, 2010
I have a web application that will need to access code behind methods as well as javascript methods. For this particular implementation it doesn't really matter which order they are called in from a program flow perspective.
I'm looking for insight into when it would be appropriate to use a code behind to call javascript and when it would be appropriate to call javascript from a code behind. Are there any ramifications of doing it one way or the other that I should be aware of before moving forward with an implementation?
Is there a best practice way to do it or is it very specific to the actual implementation?
View 2 Replies
Mar 7, 2010
I have the following jquery function
[code]...
but I need a way of calling the growlUI jquery function from my code behind file in C# rather than clicking on a div in the UI.
Is this possible?
View 1 Replies
May 5, 2010
I often want to call a function in the code behind using the "<%# ... %>" syntax. Sometimes is works and sometimes it doesn't. It is also a difficult syntax to search for. Can someone point me at an explanation of the working (or not) of this syntax?
I just tried this:
<asp:TextBox
ID="TextBox1"
runat="server"
Text="<%# getBCSConnectionString() %>"
></asp:TextBox>
For example. The function is in the code behind (it returns a string). The TextBox is empty and no break point is hit in the function; it does not appear to be called.
View 4 Replies
Feb 24, 2010
I have a JavaScript-based timeline which needs to use data from an SQL server. The queries and the JSON conversions have been worked out in the form of C#.NET functions within a code file related to an .aspx page. So for a complete newbie to ASP.NET, how do you set up a function call like this from JavaScript?I would love it if someone had some simple example code I could learn/get some pointers from.Edit: I am using .NET 3.5
View 1 Replies
Feb 22, 2011
I m trying to call a JQuery .click funtion after page postback from code behind. I m using ASP.NET with C#.
View 2 Replies
Jan 4, 2010
<head><script type="text/javascript">
var sillyVarible = 1;
</script></head>
id like to assign the above varible through and on click event from the .aspx.cs page..
how would i do it ? (not the on click just the varible call/assign from back end to front.)
View 2 Replies
Feb 16, 2010
I have just discovered the modal function and so am fairly new to it.I have a signup procedure that requires a member to be approved by the website administrator.During this Approval I wanted to display a Modal after the Approve button is pressed, which I have managed to do , but I have a textbox on my Modal so that the administrator can enter special notes about the members application. Once the OK button on the Modal has been clicked I want the Modal to save the content of the textbox back to database along with a couple of other things like changing the application status to approved and entering an approval date. I can do this in the codebehind no problem but how do I get the Modal to call the codebehind function and capture the content of the text box from the modal.I thought I could do this by setting the "OnOkScript" parameter on the Modal Popup Extender to the name of my code behind function but this just errors, presumably because it is looking for a jscript function? So my next step is to call the codebehind function from a jscript on the page.
View 1 Replies
Feb 16, 2011
So I have this idea of creating a asp.net user control, to handle all forms of modal popups (whether it be error handling, forms, dialogs, etc).
I already created this before, placing the user control in the top master page, exposing it to all content pages, so I could do something like:
Master.Popup.ShowException(Exception);
And the usercontrol itself would have the necessary markup to look like a modal dialog, and in the show method just do a .Visible = true.
This is all fine, but I've started thinking of implementing a bit of style with jquery. I'd like for the usercontrol to have some sort of jquery animation on show. But I don't know how to go about achieving this, as I don't know how I would call that jquery function from the codebehind instead of the popup.visible = true.
View 2 Replies
Sep 10, 2010
[Code]....
[Code]....
View 11 Replies
Jul 2, 2010
I am calling a jquery function after inserting a record to database...
[code]....
But it doesn't seem to work...
View 4 Replies
Dec 27, 2010
I have a java script function which presents a countdown timer.when the timer reaches zero, I want to somehow activate a function on the server side in the code-behind.I understand it is impossible to directly call a server-side function, but is there a simple way to still fire it?I want to fire the (event-handler) code behind function: protected void ButtonFinish_Click(object sender, EventArgs e).
var _countDowncontainer = 0;
var _currentSeconds = 0;
function ActivateCountDown(strContainerID, initialValue) { _countDowncontainer = document.getElementById(strContainerID);
[code]...
View 16 Replies
Mar 7, 2011
Webform with button, onclick I would like to execute jquery and call a server function in my code behind. Is this possible and can someone show me a brief example of how to.
View 7 Replies
Feb 10, 2011
I am trying to launch colorBox from the vb.net code behind. The reason for this is because I need to open another .aspx page displayed in colorBox.
If i was to hard code this an example would be:
[Code]....
The example5 is referring to:
$(".example5").colorbox();
The above works but I want to be able to achieve the same functionality from vb.net code behind when the user click HyperLink1.
View 3 Replies
Mar 5, 2010
I currently have this working but it requires me to have a static method as the method called in the code behind. I would like to be able to access some member variables that can't be static.
EDIT: Let me clarify, I'm looking to edit a value in one of the user controls on the page based on the button click. I am holding the user controls in a list on the page and using the parameters passed through the javascript to find the user control that I want to update and modify the value there.
It currently looks like this:
Javascript:
function incrementCompletes(obj)
{
var firstParameter = $(obj).parents('.parentClass1').find('.childClass1').html();
var secondParameter = $(obj).parents('.parentClass2').find('.childClass2').html();
[Code]....
I would like to find a solution that does not require the method called to be static.
View 1 Replies
Feb 8, 2011
I've done a search and read a few things, All i'm trying to do is set a variable in the code file and call it in the page file asp.net vb.net 3.5. I've tried like this in the code file:
[Code]....
And in the design part of the page:
[Code]....
But it says that name isn't declaired. What am I doing wrong?
View 7 Replies
Apr 1, 2010
i wrote some code in application start event in global.asax page...
how to call that event in my every .cs page of my project.
View 5 Replies
Feb 9, 2010
I would like to use methods in the RDLC designer from external sources. How can I reference an external method say for a complex calculation in a field? The internal vb code is not robust enough.
View 1 Replies
Apr 4, 2011
I am using Ajax's EnablePageMethods way to call server side code using javascript. The problem is that in IE8 the page automatically refreshes after the ajax call has been completed i.e. the server side function has been executed successfully. I want the same to happen with Chrome and Firefox but it doesnt refresh the page once the server side function has been executed.
I am using this way to call server side code from Javascript -- [URL]
this is the javascript function:
[code]...
this is where i am calling the javascript event:
<a href='myPageName.aspx' onclick='javascript:editNode(1);return false;'>Delete</a>
View 1 Replies
Oct 22, 2010
I am trying to call a JavaScript function from my ascx control code behind in the catch blockI have tried the below two ways but they don't seem to work.
Page.ClientScript.RegisterClientScriptBlock(typeof(string), "script", "test();", true);
ScriptManager.RegisterStartupScript(Page, GetType(), "err_msg", "alert('error');", true);
View 3 Replies
Aug 29, 2010
I have a cascading dropdown. After the dropdown is populated(it is in another file) i would like to return back to the original form where the control is placed. is there anyway of doing it
View 4 Replies
Mar 16, 2011
I have the following code for consuming a service that is not working for me. what I can do to narrow down whats going wrong?
The address is: http://localhost:57667/ExampleService.svc/
When visiting directly I get the 'You have created a service... message'
The code that goes wrong is here. It causes the following error:
_url = "http://localhost:57667/ExampleService.svc";
TextReader textReader = new StringReader(HttpPostClient.Post(new Uri(_url), bodyData.ToString(), _exampleServiceRequestEncoding, Properties.Settings.Default.HttpPostClientExampleAvailabilityTimeout));
ERROR MESSAGE:When visiting this URL directly: http://localhost:57667/ExampleService.svc/ProcessRequest
The exception message is 'No component for key example.ExternalWebServiceStubs.Example.ExampleService was found'.
Castle.MicroKernel.DefaultKernel.get_Item(String key) at Castle.Facilities.WcfIntegration.WindsorInstanceProvider.GetInstance
View 2 Replies
May 24, 2010
I tried these solution in htis
http://blogs.telerik.com/atanaskorchev/posts/09-03-06/Meet_Telerik_Web_Design_dll.aspx but not work.
Hint: Win7, vs2008.
The installation type of Telerik is "ZIP" and not "exe".
View 1 Replies