AJAX :: MaskEditExtender Not Working Android Browser
Dec 27, 2013
I used below code for separate number
cc1:MaskedEditExtender ID="MEE2" runat ="server"
TargetControlID="Txtprice1"
Mask="999,999,999"
MessageValidatorTip="true"
MaskType="Number"
InputDirection="RightToLeft"
AcceptNegative="Left"
DisplayMoney="None"
ErrorTooltipEnabled="True" />
But it didn't work in tablet (andriod Os) I mean when I want enter number it just enter 1 number after that it change keyboard to alphabet?
View 1 Replies
Similar Messages:
Feb 10, 2011
Have some problems with client side validation (using RequiredFieldValidator, RegularExpressionValidator, CustomValidator with client side validation logic). It seems that WebForm_DoPostBackWithOptions is not fired or causes unhandled exception that makes the form to do the postback regardless it's valid or not.
I tried using a ValidationSummary, hiding it if javascript is supported:
<script>
$(document).ready(function() {
$("#javascriptDisabled").hide();
[code]...
Every thing works fine on Chrome with disabled javascript on my laptop, but not on my Android phone. The problem is that on the phone Javascript is not disabled, it's enabled, and correctly hides the ValidationSummary, but does not perform client side validation for some reason that i can't understand (no developers tools on Android browser :(( ).This is very frustrating! :(
View 2 Replies
Jun 11, 2010
I'm using MaskEditExtender control for a numeric field. My code is,
<asp:TextBox ID="Options_simpleTextBox" runat="server" Width="30px"></asp:TextBox>
<ajaxToolKit:MaskedEditExtender ID="Options_simpleMaskedEditExtender" runat="server"
TargetControlID="Options_simpleTextBox" Mask="9.99" MessageValidatorTip="true"
InputDirection="RightToLeft" OnFocusCssClass="MaskedEditFocus" OnInvalidCssClass="MaskedEditError"
MaskType="Number" AcceptNegative="None" ErrorTooltipEnabled="True" />
It works fine but If I enter '2.' I can't able to type further automatically.
View 1 Replies
Mar 4, 2011
Below is the code to remove the URL bar on page load.... But I'm using AJAX with some panels and once the panels change, the URL comes back. Anyone experience this and know how to get around it?
Code:
<script type="text/javascript">
window.onload = function () {
setTimeout(function () { window.scrollTo(0, 1); }, 100);
}
</script>
View 1 Replies
Aug 11, 2010
We're running a fairly large site, and a lot of our visitors have started using their Android based cellphones to visit the site. However when they try to login, we get an Event Validation error:
Invalid postback or callback argument. Event validation is enabled using in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.
Does anyone know of a way to fix this, without disabling Event validation entirely ?
It isn't every single time they visit, but it is often enough that it's a problem.
Also we never get these on PC-based browsers (IE, FF, Chrome, Safari, Opera, etc.)
EDIT:
The page this happens on has no updatepanels, no custom __doPostback code, etc. It's pretty much vanilla with a simple LinkButton that causes the postback.
Also this error occurs on a bunch of other pages as well (Just found out about that now), so I doubt it's a lone design fault.
View 1 Replies
Jul 15, 2010
I'm figthing against a problem with FORMVIEW and MASKEDIT.When I use mask edit with a TextBox within EditItemTemplate/FormView, the current data (located in SQL database) doesn't appear!If I delete my MaskEdit tags, the current data appears.See the code below:
[Code]....
View 3 Replies
Nov 15, 2012
How to display datetimein text box in this format 27/12/2012 10.30 AM
When i am using masked edit extender and calender extender for this,
I cant changr AM/PM .
How to dispaly date time with AM/PM using masked edit extender and calender extender
View 1 Replies
May 7, 2015
Ajax control
HTML
<cc1:ToolkitScriptManager runat="server">
</cc1:ToolkitScriptManager>
hh:mm:ss
<asp:TextBox ID="txtTime" runat="server"></asp:TextBox>
<cc1:MaskedEditExtender ID="MaskedEditExtender1" runat="server" MaskType="Time" UserTimeFormat="TwentyFourHour"
Mask="99:99:99" TargetControlID="txtTime">
</cc1:MaskedEditExtender>
View 1 Replies
Jun 4, 2010
i use Ajax MaskEditExtender and Maskedit validator for date field.but problem is when my page load first time and i click in page that time Validator fire insted click in Submit button.my code is like
if page.isvalidate()end if.but why the maskedit validator fire when click on the page? i use VS2005.
View 5 Replies
Feb 22, 2011
I have a asp.net Webservice which returns me XML. What should i use in Android and how to parse?
View 3 Replies
Jul 27, 2010
I am facing one issue with MaskEditExtender (Ajax Control) control. If anyone knows solution please let me know.
I am having one TextBox aassociated with mask edit extender control. While editing the textbox values, value getting replaced instead of added.
Ex: Supose in my textbox if i have value as 1234, then i want to make it as 12534 so i entered 5 after 2. But am not getting result as expected, its showing as 1254 (means 3 is getting replaced with 5).
View 4 Replies
Sep 30, 2010
I have used Update Panels in my ASP.net webpage. I have a modal popup. But the tab index is set to -1 for all the parent page controls once the modal popup comes in picture. Does anybody has resolution for this. I tried again reseting the tab index through javascript......But its not working(may be DOM is not getting refreshed)
View 1 Replies
Feb 4, 2011
I'm using C#, asp.net 3.5, Ajaxtoolkit
Is there a setting so that user can go back and forward through the tabs they selected in the same Tabcontainer?
View 3 Replies
Nov 17, 2010
I am using AjaxContrToolKit (AjaxControlToolkit.Compat.DragDrop.DragDropScripts.js) in my application to provide the drag and drop facility . After implementing the same in the application , observed that working fine in IE and Firefox browser . But the same is not working in Safari and WebKit (Chrome and Safari) browser . In these browsers(both Safari and Webkit), while clicking on the top of the panel getting scrolled up .
View 1 Replies
Feb 28, 2011
how to solve the AJAX POST problem on ASP NET MVC running on IIS7, basically when you use an Android 2.1 phone and load an ASP NET MVC website on IIS7, and you click on a input button that subsquently makes an AJAX call, you get on a high level, the error window shopwing Error: NETWORK_ERR: XMLHttpRequest Exception 101. I have generated a TempData variable containing some data, and when a RedirectToAction call is made to the controller, the TempData is null. am wondering if anyone has managed to solve this problem at all, and I have searched everywhere but no one seems to know the solution for it.
View 12 Replies
Feb 9, 2010
I have website home page which my client can view well on his blackberry mobile phone but I have link buttons on that page which redirect the users to other pages ..just Response.Redirect ............simple code.... but when he clicks on the link, it requests for enabling javascript..I do that but the home page just does a postback. Links are not working on cellphone........... on regular website they are working fine.
View 2 Replies
Oct 12, 2010
I am trying to get a favicon to appear on my webpage. Disclaimer: I have never done this before, but it does seem rather simple.
I have a ico image in a folder called pics that is part of my project. I am trying to do this inside my master page.
<link rel="Shortcut Icon" href="~/pics/REDIcon.ico"/>
That is correct, right? Is there anything else I should check?
EDIT:
my code now looks like:
<link rel="Shortcut Icon" href="pics/REDIcon.ico" type="image/x-icon"/>
This however is still not working properly.
View 5 Replies
Aug 2, 2010
I have deployed my asp.net 2.0 website on IIS, and I tested there by browsing website in IIS and it's working fine. But I am getting the below error while browsing the websiteConfiguration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Unrecognized attribute 'xmlns'.Source Error:
<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<configSections>
<section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging, Version=3.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Previously when we used to create a website in IIS, it worked fine. I have checked the website folder in IIS [ By clicking Property > ASP.NET] and the framwework tageted there is 1.1, and it is in read only mode. If the problem is related to this issue than please let me know how to change it.
View 2 Replies
May 20, 2010
I have an image that has an on-click function. That on-click function calls an action method in a controller passing some values from the page, using window.location.replace.
[Code]....
The controller then gets data from the repository and displays a "printer friendly html" page:
[Code]...
View 1 Replies
Feb 8, 2011
Android is not allowing this simple hyperlink: http://rentonlive.com/TandL.aspx?xid=106&xtitle=RED%LIGHT%CAMERAS%READER%SURVEYI get a web page not found error.Is there something wrong with the construction of the link in terms of Android?I downloaded an emulator, same problem. The phone says it has a browser, finding the 'rules' to this 'browser' is very difficult.And, all works fine in Google Chrome.Any pointers or sites that provide answers to Android issues appreciated.
View 1 Replies
Sep 20, 2010
I have an asp.net project both in .net 2005 and 2008.It is working fine in my PC and page is opening from browser but not from other PC.I can able to connect the other pc's,ping it sure there is no connection problem with pc.I think should be in IIS or sharing from my PC.I need both in .net 2005 and 2008.
View 2 Replies
Mar 1, 2011
i am using jquery first time on my page , one of my user reports me the bug that when he is trying to select something from browser its not working.i think this is a common scenario when user select something from browser and paste in Google for searching purpose.
View 4 Replies
Nov 30, 2010
My Pagemethod implementation is not working in Chrome browser. I have ASP.NET 3.5 web application developed in VS 2008.
The code below not working in chrome or Safari:
function FetchDataOnTabChange(ucName)
{
PageMethods.FetchData(ucName, OnSuccessFetchDataOnTabChange, OnErrorFetchDataOnTabChange);
}
function OnErrorFetchDataOnTabChange(error)
{
//Do something
}
function OnSuccessFetchDataOnTabChange(result)
{
//Do something
}
View 2 Replies
Sep 2, 2011
It's weird, my firefox has cookies disabled, yet I am still able to retrieve the cookie.
Code:
protected void Page_Load(object sender, EventArgs e)
{
Response.Cookies["a"].Value = "1";
}
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = Request.Cookies["a"].Value.ToString(); //it returns value
}
Why is this?
View 7 Replies
Oct 20, 2010
I'm creating a optimized web page for mobile devices with C#. Is there a way to offer a page for larger screens and one for smaller screens on android devices? With Apple i can differentiate between iPad and iPhone, but how can I do this with the galaxy tab or a regular android phone?I don't want to use any javascript in this case.
View 3 Replies