UPDATE:
Based on Slace's response I am now using the latest Official release witch includes the functionality I am after however I am still getting the same issue below.
Gday All,
I am developing an App that uses the calendar pop up position that in not in the release build of ASP.NET Ajax. I have updated ASP.NET ajax to the latest dev...
Hi,
I want to access the display properties of the client desktop in silverlight application and modify the application layout according 2 the ones set on client machine. When we right click on desktop and choose properties we get display properties dialog. i want to access appearance and theme properties from this. i hv to retrieve th...
I've got some JavaScript in an ASP.NET page that looks like this:
var list = $get('<%=Topics.ClientID %>');
I have many functions written now where this syntax is used, and I would like to centralize my JavaScript and move this into an external JavaScript file. This breaks however, since 'Topics' cannot be found.
What is the best st...
We have a user who uses our site over 3G. The asp.net 2.0 application uses the AJAX toolkit updatepanels to provide a view of some data. I'm getting complains that sometimes elements within the updatepanel are missing. I believe this to be down to communication issues of the ajax calls but am having trouble repeating the issue.
How woul...
I'm trying to get my hovermenuextenders to do some lazy loading. I have avatars across the site that when hovered over should pull back various things (images, recent posts, post count, etc) For obvious reasons I don't want to do this for all avatars on the page_load.
Using the following code I'm able to get the hover event to trigge...
I've got two DropDownLists. First is visible and second is not. I'd like to have something like this:
Select value from first DDL.
Then partial postback occurs - the data is retrieved from DB based on selection.
Second DDL is populated
Second DDL is shown with i.e. slide effect (javascript)
I don't want to have full postback. The ...
I am calling a WCF Service using AJAX.NET and wanted to know if the following is possible.
e.g at the moment I have something like the following
AJAX.NET call in Page..
ITeaMaker.MakeCupOfTea(onMakeCupOfTeaSuccess, onMakeCupOfTeaError);
WCF..
public Tea MakeCupOfTea()
{
FillKettle();
BoilKettle();
PutInTeaBag();
PourWa...
Hi,
I need some advice to save me re-inventing the wheel.
Our windows app is being redesigned as a web app [ASP.Net/AJAX dot Net 3.5 - SQL Server 2005 DB] and we are at the begining of the process.
One of the requirements is that the customer should have some control over the page layout .i.e. type of controls, position of controls ...
A pleasant user experience requires a page to load very fast. This can be difficult when there is a large query taking place or when a web service is being used.
I deally, the entire page should be loaded first with loading images everywhere a cumbersome task takes place.
In ASP.NET, this can be accomplished using update panels and a 1...
I have an HTML <TABLE> displaying a list of items in the rows of the table. To add a new item to the list of items I have a form which submits the data to my controller via AJAX using Ajax.BeginForm. Once the action on the controller has finished it returns a partial view containing the markup for a new row to append to my table (eg. <...
Q1: Is there something like too much ajax??
Explanation:
I have been seeing programmers using Ajax/jQuery etc where I think its not even required. I had built a reporting tool for the company's senior management ( age group 55+) and had to refactor many pages and actually take out the ajaxy stuff from it. Are these things to be hand...
Is there a way to hide the textbox that is targeted by the colorpickerextender in the newest release of the ajax control toolkit?
If you add style="display:none" to the textbox, then the color picker shows up in the top left corner of the browser window. I want it to show up near the button that is referenced in the extenders popupbutto...
Is there a way to limit the date range with ASP.net calendar extender?
For example, i have a calendar extender attach to a text box that is a "Start Date" for user to pick then another text box call "End Date" with calendar extender.
When a user pick the Start Date to be 5/31/2009 then the End Date can only be 30 days from 5/31/2009 th...
I am using a Wizard control in an UpdatePanel. Some of the Wizard Steps have UpdatePanels nested inside. Both the outer and inner UpdatePanels have their own Trigger collection. All of the events fire as intended.
However, the triggers for the outer UpdatePanel do not set off the UpdateProgress control. The inner ones all do. I'm...
hey guys,
I'm having some trouble getting a datetime from calextender on a modalpopup I have.
<asp:TextBox ID="txtPopEndDate" runat="server" Enabled="false"></asp:TextBox>
<img id="calButton" alt="" title="Show Calendar" src="~/App_Themes/Main/img/calendar.png"
runat="server" height="20" style="cursor: hand;" />...
Hi,
I'm using jquery validation with asp.net. The problem is, I have the search button and the comments button in the same form. When the users want to write a comment, the validation works perfect, but when the users want to make a search in the page, the required fields of the comments dosn't allow them.
So the question is how can I d...
I am trying to update and updatepanel from javascript.
The code I'm using works, but only seems to do a full page post back.
function RefreshAppearances() {
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm._doPostBack('<%=Me.updAppearances.ID %>', '');
}
When the updatepanels load event fires the ScriptManager.IsI...
Hi Friends
I am using ajax dll in my application for smooth working but i have some doubt in my mind ? is there any security problem in server when we are using ajax dll in my application. means any one can missuse the application because we are using public memthods in ajax dll.
Any one suggest me, thanks in advance
Lokendra
...
I have a quite simple data capture web app.
In the main capture window, when you save a row in a UltraWebGrid, depending on certain flags two more windows open (with a ScriptManager.RegisterStartupScript).
One of the windows, works perfectly fine.
The other one, when it gets closed (by means of its own ScriptManager.RegisterStartupScr...
I am using the calendarextender in an asp.net page. It works the way I would expect but after ia have the calendar open it won't close automatically when I press the escape key is there something I need to do toget this behavior? The escape key closes the reference http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/Calendar/Calendar.aspx...