Quantcast
Channel: ASP.NET AJAX + Ajax Control Toolkit (ACT)
Viewing all 5678 articles
Browse latest View live

Modal Popup appears behind gridview

$
0
0

Doesn't happen all the time even but occasionally. Any thoughts on fixing this problem?

<asp:UpdatePanel ID="udpEditModal" runat="server"><ContentTemplate><asp:UpdateProgress ID="UpdateProgress5" AssociatedUpdatePanelID="udpEditModal" runat="server"><ProgressTemplate><div style="text-align: center; color: Red; font-size: 12px; font-weight: bold; position: relative;"><img src="images/ewestcor_loader.gif" alt="Loading" /></div></ProgressTemplate></asp:UpdateProgress><asp:Button ID="btnEditHack" runat="server" Style="display: none;" /><asp:Panel ID="pnlEditModal" CssClass="pnlBackGround" runat="server" Width="450px"><table width="100%"><tr><td colspan="2"><asp:Label ID="Label1" runat="server" Text="Edit Scheduled Audit" Font-Bold="True" Font-Size="Large"></asp:Label></td></tr><tr><td colspan="2"><asp:Label ID="Label10" runat="server" Text="Auditor:" Width="125px" Font-Size="Medium"></asp:Label><asp:TextBox ID="txtEditAuditor" CssClass="txtbox" runat="server"></asp:TextBox></td></tr><tr><td colspan="2"><asp:Label ID="Label11" runat="server" Text="Auditor 2:" Width="125px" Font-Size="Medium"></asp:Label><asp:DropDownList ID="ddEditAuditors" runat="server"></asp:DropDownList></td></tr><tr><td colspan="2"><asp:Label ID="Label12" runat="server" Text="Scope:" Width="125px" Font-Size="Medium"></asp:Label><asp:TextBox ID="txtEditScope" CssClass="txtbox" runat="server"></asp:TextBox></td></tr><tr><td colspan="2"><asp:Label ID="Label13" runat="server" Text="Schedule Date:" Width="125px" Font-Size="Medium"></asp:Label><asp:TextBox ID="txtEditCalendar" CssClass="txtbox" runat="server"></asp:TextBox><asp:CalendarExtender ID="CalendarExtender1" TargetControlID="txtEditCalendar" runat="server" Enabled="True" /></td></tr><tr><td colspan="2"><asp:Label ID="Label14" runat="server" Text="Schedule Time:" Width="125px" Font-Size="Medium"></asp:Label><span id="spanEditTime" style="font-size: medium" runat="server" >12:00 PM</span> </td></tr><tr><td colspan="2" width="100%" align="center"><asp:HiddenField ID="hfEditTime" runat="server" /><asp:TextBox ID="txtEditTimeSlider" runat="server"></asp:TextBox><asp:SliderExtender ID="SliderExtender2" runat="server"
TargetControlID="txtEditTimeSlider"
BehaviorID="slider2"
Minimum="0"
Maximum="95"
Steps="95" Enabled="True" /></td></tr><tr><td colspan="2">&nbsp;</td></tr><tr><td colspan="2"><asp:CheckBox ID="ckbEditReminder" runat="server" Font-Size="Medium" Text="Send Audit E-Mail Reminder?" /></td></tr><tr><td colspan="2">&nbsp;</td></tr><tr><td colspan="2" align="left"><asp:Button ID="btnOK2" runat="server" Text="OK" UseSubmitBehavior="False" /><asp:Button ID="btnHackOK2" runat="server" Text="OK" Style="display: none" /><asp:Button ID="btnCancel2" runat="server" Text="Cancel" UseSubmitBehavior="False" /></td></tr></table></asp:Panel><asp:ModalPopupExtender ID="mpeEditSchedule" runat="server"
PopupControlID="pnlEditModal"
TargetControlID="btnEditHack"
BackgroundCssClass="modalBackground"
DropShadow="True"
OkControlID="btnHackOK2"
CancelControlID="btnCancel2" Enabled="true"></asp:ModalPopupExtender></ContentTemplate><Triggers><asp:AsyncPostBackTrigger ControlID="gvEditAudits" EventName="RowCommand" /></Triggers></asp:UpdatePanel>




An unknown error occurred while processing the request on the server. The status code returned from the server was: 12031

$
0
0

We have a web application thru which we can search for the reports and get the results on a telerik rad grid. Each report has a specific stored procedure. This works fine on Development machine where the data is less and Query execution for any report is about 5-10 seconds, but in QA and Prod where data is huge and query execution takes about 5-10 minutes depending on the report, we are getting the below error.

If I select any report and just click search and leave it alone, it takes 10min to render the results to the grid, which is fine.

Below error occurs only in a specific scenario when I search for a report say ReportA (which takes about 10min to render), but before the results of ReportA are rendered, if I search for another report say ReportB then I am getting this error.

An unknown error occurred while processing the request on the server. The status code returned from the server was: 12031

Please help me finding the root cause of this problem. I dont know where to look, any help would be appreciated...

70-515 - Ajax Suggested Practices

$
0
0

Hi,

I am currently in the middle of studying for my 70-515 exam (Web Application Development with Microsoft.NET Framework 4). I'm at the chapter studying AJAX, and one of the suggested practices is as follows;

"Create an AJAX client control that extends an ASP.NET button with a confirmation alert window."

Now i've attempted this practice but it doesn't seem to be working. The error I am receiving when trying to run the application is "JavaScript runtime error: 'Sys' is undefined"

I have been using the book for reference when creating the bit of code below, but it still doesn't seem to be working. I was hoping you guys may be able to shed some light on where I am going wrong.

Ajax.js

///<reference name="MicrosoftAjax.js" />

Type.registerNamespace("Ajax");

Ajax.AlertBox = function (element) {
    Ajax.AlertBox.initializeBase(this, [element]);

    Ajax.AlertBox.prototype = {
        initialize: function() {
        Ajax.AlertBox.callBaseMethod(this, 'initialize');

        this._OnClickHandler = Function.createDelegate(this, this._OnClick);
        $addHandlers(this.get_element(), {'click' : this._OnClick}, this);
        },

        dispose: function() {
        $clearHandlers(this.get_element());
        Ajax.AlertBox.callBaseMethod(this, 'dispose');
        },
        _OnClick : function() {
            alert("This box has appeared because the custom button has been clicked!");

        }
        }
        }
        Ajax.AlertBox.registerClass('Ajax.AlertBox', Sys.UI.Control);

        if (typeof(Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();

Default.aspx

<%@ Page Title="Home Page" Language="VB" MasterPageFile="~/Site.Master" AutoEventWireup="false"
    CodeFile="Default.aspx.vb" Inherits="_Default" %><asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent"><script language="javascript" type="text/javascript">
        var app = Sys.Application;
        app.add_init(appInit);

        function appInit(sender, args) {
            $create(Ajax.AlertBox, null, null, null, $get('MainContent_Button1'))}</script></asp:Content><asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent"><asp:ScriptManager runat="server" ID="ScriptManager1"><Scripts><asp:ScriptReference Path="~/Scripts/AjaxEnabled.js" /></Scripts></asp:ScriptManager><asp:Button id="Button1" runat="server" /></asp:Content>

The line of code that this seems to be erroring out on is within the Default.aspx on the line which has var app = Sys.Application.

Any help on this is greatly appreciated as I'm pulling my hair out on this one now!

Thanks,

IIS 7 ASP.NET UpdatePanel Reload issues

$
0
0

Hi, I have a bound control inside an update panel which refreshes every 5 seconds.

This works fine for a period of time and then the page hangs.

The Page has a databound control which is placed inside the update panel.

The site is configured to use Windows Authentication and is limited to an single active directory group.

I have set the Application Pool to recycle every 2 hours.

It seems the authenticated session is lost.

How should I fix this problem?

We use IE 8 and IIS 7.

HTMLEditor - can not read the modified text

$
0
0

Hi all,

I'm using HTMLEditor for my web page. But after changing the content, I can't read the current text of this object. Can anyone explain me why? Thanks very much.

<%@ Page Title="FX News Management" Language="C#" MasterPageFile="~/Site.Master"
    AutoEventWireup="true" CodeBehind="FxForumManagement.aspx.cs" Inherits="FxForums.FxForumManagement"
    EnableEventValidation="false"%><%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit.HTMLEditor"
    TagPrefix="htmlEditor" %><asp:ToolkitScriptManager ID="ajaxToolkitScriptManager" runat="server" EnablePartialRendering="true"></asp:ToolkitScriptManager><asp:UpdatePanel ID="updatePanelNewsContent" runat="server"><ContentTemplate><htmlEditor:Editor ID="txtNewsContent" runat="server" Height="300px" Width="100%" /><br /><asp:Button ID="btnNewsSubmit" runat="server" Text="Submit"
                                            onclick="btnNewsSubmit_Click" /></ContentTemplate></asp:UpdatePanel>


Can any one do it?

$
0
0

 recently i got a ASP.NET project file form my elder bro , in that project i got a lot of files and web forms he challenged me to change code behind it . i was just trying to do it but i am unable to see the .cs file of the web forms like default.aspx , login.aspx . in that project there are a lot of web forms but no any .cs file how the project is running. but the project is running fine. 

the main thing is how i will be able to view the code in C# means behind the html . when i click right button and click on view code its shows me the html code again and agian.

please help me .. i am now help less 

NB: The project is running fine on hosting and on my local machine no problem at all.

MultihandlerSlider Issue

$
0
0

I am attempting to create an AJAX Multi slider. One showing the low value (the left slider) and the max value (the right slider) and eventually displaying the value in a label.

So far i have the below markup but cant get the second slider to appear?

<asp:TextBox ID="Min" runat="server"></asp:TextBox>
<asp:TextBox ID="Max" runat="server"></asp:TextBox>
<ajax:MultiHandleSliderExtender ID="MultiHandleSliderExtender1"
runat="server" Enabled="True" HandleAnimationDuration="0.1" Maximum="10000"
Minimum="50" TargetControlID="Min" Increment="50" RaiseChangeOnlyOnMouseUp="true" ></ajax:MultiHandleSliderExtender>
<ajax:MultiHandleSliderExtender ID="MultiHandleSliderExtender2"
runat="server" Enabled="True" HandleAnimationDuration="0.1" Maximum="10000"
Minimum="50" TargetControlID="Max" Increment="50" RaiseChangeOnlyOnMouseUp="true" >
</ajax:MultiHandleSliderExtender>

Could anyone advise what ive done wrong or how to resolve this?

Thanks

Click on any image of the SlideShowExtender

$
0
0

Hi pals!

I have put a SildeShowExtender and a number of images to be displayed every 3 seconds. I want to do the following scenario, but don't know how to do it!!! Please help me.

I want the program to open the page related to each picture when I click on any image of the SlideShowExtender. For example, when I click on the first image, I want it to direct me to the page related to that picture (say, Pic1.aspx) and the story goes the same for the other images.

Thanks in advance!


Link inside Text Box with AJAX Html Extender

$
0
0

I have added an AJAX Html Extender to a textbox. I created a link in the text box and saved the textbox content to database. When I retrieved the text again from the database, the link is not working.

I get the following text:

<A href=www.google.com>google.com </A>

This is the same for any image copied to the text box.

Any advice please....? Or anyother alternate solution?

RE: Use HtmlEditorExtender for formatting only

$
0
0

Ok, guys. I have no idea how to do it so hope you will help me.

Here is my task in general: edit an artilce via HtmlEditorExtender and show it to an user (without HtmlEditorExtender of course).

So in details then:

1) I need to retreive an article info from DB.

2) Format this article via HtmlEditorExtender.

3) If something was changed during formatting save data into DB.

4) Show generated page to an user.

Is it possible? :-)

I have no clue how to display already formated by HtmlEditorExtender text without HtmlEditorExtender...

I need HtmlEditorExtender only for formattin an article.

Thank you!

ajaxToolkit:HtmlEditorExtender Blank box with Cancel button

$
0
0

Hi,

 

After upgrading from VS2010 to VS2012 user get a blank box with a [cancel] button (the [cancel] button does not do anything.

When trying the same action for a second time, they experience no problem and the editor works fine.

 

HtmlEditorExternder Cancel

VS2012 ASP.NET 4.0 IIS 7 Windows server 2008 R2

<asp:TextBox ID="LogboekTextBox" runat="server" Text='<%# Bind("Logboek") %>'
                    TextMode="MultiLine" Width="95%" Height="20em" /><ajaxToolkit:HtmlEditorExtender
                    ID="HtmlEditorExtender1" runat="server" TargetControlID="LogboekTextBox" EnableSanitization="False"
                    DisplaySourceTab="False"><Toolbar><ajaxToolkit:Undo /><ajaxToolkit:Redo /><ajaxToolkit:Bold /><ajaxToolkit:Italic /><ajaxToolkit:Underline /><ajaxToolkit:StrikeThrough /><ajaxToolkit:Subscript /><ajaxToolkit:Superscript /><ajaxToolkit:InsertOrderedList /><ajaxToolkit:InsertUnorderedList /><ajaxToolkit:RemoveFormat /><ajaxToolkit:ForeColorSelector /><ajaxToolkit:InsertHorizontalRule /></Toolbar></ajaxToolkit:HtmlEditorExtender>

RE: Re: &#39;System.Web.UI.LiteralControl&#39; to type &#39;System.Web.UI.WebControls.TextBox&#39;.

$
0
0

Unable to cast object of type 'System.Web.UI.LiteralControl' to type 'System.Web.UI.WebControls.TextBox'.


I am getting this when I run the code.

<asp:GridView ID="GV_GeneralForums" runat="server" AutoGenerateColumns="False" BorderColor="White"
BorderStyle="None" ShowHeader="False" Width="890px" AllowPaging="True" OnPageIndexChanging="GV_News_PageIndexChanging"
OnSelectedIndexChanging="bt" AutoGenerateSelectButton="true">
<Columns>
<asp:TemplateField ItemStyle-HorizontalAlign="Left">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Visible="true" Text='<%# Eval("ID")%>'></asp:Label>

in code behind:

int _ID = Int32.Parse(((TextBox)(row.Cells[1].Controls[0])).Text);

what to do?


Modalpopextener control and focus

$
0
0

I just added modalpopextender control for the save dialog box. The way it is supposed to work is that when the user let’s say Save the changes, the message box opens and the text of the message is read  by the screen reader. When they select the buttons in the message box, such as Yes, No or Cancel, the message box closes.

This should be the behavior across the entire application.

There will be a message box like the one  below. Try it with a keyboard. The focus is not lost. 

The user should not leave the message box until clicking buttons in the message box.  Even they cannot access any other stuff on the page unitl they they make a selection in the message box. 

Please assist me with this issue.

Thank you,

Chi Ming

Tab acts like postback and changes Tab (to index = 1!) without firing TabChanged event

$
0
0

Hello,

I'm using Ajax Toolkit - Tabs, PopupControlExtender and the old UpdatePanel for a Gridview Refresh.

The sequence is as follows:

- First tab has a gridview1

- Second tab has some textboxes, one of wich has attached a PopupControlExtender; this extender brings up a Panel that holds a smaller gridview2 from wich I can select a record to populate the textboxes. I managed to do it by putting the gridview2 and the"search button" in an Update Panel.

Problem: now when i get back to tab1, anything i do on the gridview1 (sort, page index chage, select row) it takes me back to tab2. No tabchange event is being fired! This is driving me crazy! 

Dh you have any sugestions ? Any advice is appreciated.

Thanks.

AsyncFileUpload not working with *.docx

$
0
0

Hi

I've just noticed that my AsyncFileUpload is not working with any document that is docx? It's fine with .doc, .txt, .pdf?

Is it because it has 4 letters in the extension?

Thanks as alwasy


how unlimited size of file download in AjaxFileUpload

$
0
0

hi

i'm using AjaxFileUpload  and when i want to download file  size biger than 7MB

but i see error from AjaxFileUpload 

how can i set size of file to download in AjaxFileUpload 

 <cc1:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"></cc1:ToolkitScriptManager>
    <div>
  <cc1:AjaxFileUpload ID="AjaxFileUpload1"
    ThrobberID="myThrobber"
    AllowedFileTypes="jpg,jpeg,doc,docx,pdf,zip,rar"
    MaximumNumberOfFiles="2"
    OnClientUploadComplete="uploadComplete"
    OnClientUploadError="uploadError"
    OnUploadComplete="AjaxFileUpload_UploadComplete"
    runat="server"/>
    </div>

string filePath = Server.MapPath("~//pic//") + e.FileName;
        AjaxFileUpload1.SaveAs(filePath);

please F1F1F1F1F1F1F1F1

how to generate code for slideshow extender in any event like load/click .

$
0
0

i am trying from last week but it showing some errors to please help me about this question.

Does the UpdatePanel offset code behind logic?

$
0
0

I'm very new to ASP.Net 3.5 and C# 3.0. I'm trying to understand why my code below is broken. I'm using a datafilter tool that I discovered here (http://ammar.tawabini.com/2010/09/gridview-ajax-filter.html). The reason why I'm using this solution is because I needed to add a search feature to the "GridView"control I have on the page. Before I used this solution I was able to execute the export command that is embedded in the "GridView"with no problem.

My question is if a place a "GridView" with Command buttons inside an "UpdatePanel" does it off set the code behind for the Command button I have (in my case that would be the Export button).

If so how can I work around it so I can provide both functionality?


The code behind is here:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Collections;
using System.Data;
using System.Data.SqlClient;
using System.IO;
using System.Drawing;
using iTextSharp.text;
using iTextSharp.text.pdf;
using iTextSharp.text.html.simpleparser;
using System.Configuration;


namespace DataFilterDemo
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
DataFilter1.DataSource = SqlDataSource1;
DataFilter1.DataColumns = GridView1.Columns;
DataFilter1.FilterSessionID = "Default";
DataFilter1.OnDataBound += new DataFilter.BindDataGridView(DataFilter1_OnDataBound);

}

void DataFilter1_OnDataBound()
{
try
{
DataFilter1.FilterSessionID = "Default";
DataFilter1.FilterDataSource();
GridView1.DataBind();
}
catch (Exception ex)
{
DataFilter1.Info = ex.Message;
}
}

public override void VerifyRenderingInServerForm(Control control)
{
/*Verifies that the control is rendered */
}

protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
int eventid;
eventid = Convert.ToInt32(GridView1.SelectedDataKey.Value);

String strCon = ConfigurationManager.ConnectionStrings["CME_RFID"].ConnectionString;
DataTable dtExport = new DataTable();
String strSQL = "SELECT PersonID, Person_Last, Person_First, Person_Title, Life_Number, Event_Name, EventID, CME_Event_Track_ID FROM vAttendanceList WHERE EventID = " + eventid;

SqlConnection connect = new SqlConnection(strCon);
SqlCommand command = new SqlCommand(strSQL, connect);

SqlDataAdapter adExport = new SqlDataAdapter(command);

adExport.Fill(dtExport);


exportSpreadsheet(dtExport, "ExportReport");

}

public static void exportSpreadsheet(DataTable dtTable, String strName)
{
HttpContext context = HttpContext.Current;
context.Response.Clear();


foreach (DataColumn column in dtTable.Columns)
{
context.Response.Write(column.ColumnName + ",");
}
context.Response.Write(Environment.NewLine);
foreach (DataRow drRow in dtTable.Rows)
{
for (int i = 0; i < dtTable.Columns.Count; i++)
{
context.Response.Write(drRow[i].ToString().Replace(",", string.Empty) + ",");
}
context.Response.Write(Environment.NewLine);
}
context.Response.ContentType = "text/csv";
context.Response.AppendHeader("Content-Disposition", "attachment; filename=" + strName + ".csv");
context.Response.End();
}
}

}



The markup is below:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="DataFilterDemo._Default" %><%@ Register src="DataFilter.ascx" tagname="DataFilter" tagprefix="uc1" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"><title></title></head><body><form id="form1" runat="server"><div></div></body> <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager><uc1:DataFilter ID="DataFilter1" runat="server" /><asp:UpdatePanel ID="UpdatePanel1" runat="server"><ContentTemplate> <asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1" AllowPaging="True"
AllowSorting="True" AutoGenerateColumns="False" BackColor="#CCCCCC" BorderColor="Black"
BorderStyle="Solid" BorderWidth="3px" CellPadding="4" DataKeyNames="EventID"
CellSpacing="2" ForeColor="Black" Width="984px" 
OnSelectedIndexChanged="GridView1_SelectedIndexChanged"><RowStyle BackColor="White" /><Columns><asp:CommandField ButtonType="Button" CausesValidation="False" 
DeleteText="" EditText="Add Track ID" InsertText="" NewText="" 
SelectText="" ShowEditButton="True" UpdateText="Commit" /><asp:CommandField ButtonType="Button" 
DeleteText="" EditText="" InsertText="" NewText="" 
SelectText="Export" UpdateText="" InsertVisible="False" 
ShowCancelButton="False" ShowSelectButton="True" CancelText="" /> <asp:BoundField DataField="CME_Event_Track_ID" HeaderText="CME Track ID" SortExpression="CME_Event_Track_ID" /><asp:BoundField DataField="Event_Type" HeaderText="Event Type" SortExpression="Event_Type" Visible="False" /><asp:BoundField DataField="Event_Name" HeaderText="Event Name" SortExpression="Event_Name" /><asp:BoundField DataField="Event_Desc" HeaderText="Event Desc" SortExpression="Event_Desc" /><asp:BoundField DataField="Event_Date" HeaderText="Event Date" SortExpression="Event_Date" /> <asp:BoundField DataField="EventCount" HeaderText="Attendance Count" SortExpression="EventCount" /></Columns><FooterStyle BackColor="#CCCCCC" /><PagerStyle BackColor="#CCCCCC" ForeColor="Black" HorizontalAlign="Left" /><EmptyDataTemplate>&nbsp;</EmptyDataTemplate><SelectedRowStyle BackColor="#000099" Font-Bold="True" ForeColor="White" /><HeaderStyle BackColor="Black" Font-Bold="True" ForeColor="White" /></asp:GridView><asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:CME_RFID %>" ProviderName="System.Data.SqlClient"
SelectCommand="SELECT CME_Events.EventID, CME_Events.Event_Name, CME_Events.Event_Desc, CME_Events.Dept_ID, CME_Events.Event_Date, CME_Events.Event_TimeStart, COUNT(CME_IDRegistration.recID) AS EventCount, CME_Events.CME_Event_Track_ID FROM CME_RFIDReader.CME_Events INNER JOIN CME_RFIDReader.CME_IDRegistration ON CME_RFIDReader.CME_Events.EventID = CME_RFIDReader.CME_IDRegistration.EventID GROUP BY CME_Events.EventID, CME_Events.Event_Name, CME_Events.Event_Desc, CME_Events.Dept_ID, CME_Events.Event_Date, CME_Events.Event_TimeStart, CME_Events.CME_Event_Track_ID ORDER BY Event_Date DESC"
UpdateCommand="UPDATE CME_RFIDReader.CME_Events SET CME_Event_Track_ID = @CME_Event_Track_ID WHERE EventID = @EventID"> </asp:SqlDataSource></ContentTemplate></asp:UpdatePanel></form></html>

Update an UpdatePanel when ModalDialog closes or on button event

$
0
0

I have two pages. The first one has one button and an UpdatePanel that contains an image. The button uses the following code to show a ModalDialog:

window.showModalDialog('AjustarImagem.aspx',
                                        null,
                                       'status:no;
                                        LOCATION: NO;
                                        TOOLBAR=NO ;
                                        DIRECTORIES: NO;
                                        dialogWidth:250px;
                                        dialogHeight:300px;
                                        dialogHide:true;
                                        help:no;
                                        scroll:yes');
                                        return false;");

What I need to do is to update the UpdatePanel when the ModalDialog closes, or when the click event of the ModalDialog button fires.

SliderExtender tabbing issue in internet explorer

$
0
0

I've just been trying to use the SliderExtender on a textbox and find that I can tab off the first text box and onto the slider but I can't tab off the slider and onto the next textbox! It works in all other browsers but internet explorer :/ does anyone know a work around?

<form id="form1" runat="server"><asp:ScriptManager ID="ScriptManager1" runat="server" /><div><asp:TextBox ID="TextBox1" runat="server" TabIndex="1" /><asp:TextBox ID="txtStarScore" runat="server" TabIndex="2" /><asp:SliderExtender ID="se" runat="server" TargetControlID="txtStarScore" Minimum="0" Maximum="5" Steps="6" /><asp:TextBox ID="TextBox2" runat="server" TabIndex="3" /></div></form>



Viewing all 5678 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>