AJAX :: Accordion Panel Is Not Working On Page?
i write following code for accordion panel but its not open on page .....
<asp:Accordion ID="Accordion1" runat="server"
BorderColor="Black" RequireOpenedPane ="false" SelectedIndex ="-1"
HeaderCssClass="acco_header"
style="margin-left: 151px; top: 387px; left: 47px; position: absolute; height: 175px; margin-top: 0px;"
Width="322px" >
<Panes>
<asp:AccordionPane ID="AccordionPane1" runat="server" HeaderCssClass ="acco_header" ContentCssClass="acco_content" Width="100" Height="28" BorderColor="Black">
<Header>
Forgot Password
</Header>
<Content>
<h4>E-mail:</h4><asp:TextBox ID="text1" runat ="server" Width="150" Height="25"></asp:TextBox><br /><br />
<asp:Button ID="Button3" runat ="server" Text ="Submit" OnClick = "Button3_Click" BackColor="#FFDB70"/>
</Content>
</asp:AccordionPane>
</Panes>
</asp:Accordion>
View 1 Replies (Posted: Feb 14, 2011 03:48 PM)
Sponsored Links:
Related Forum Messages For ASP.NET category:
AJAX :: Updating A Panel From Another Panel Through Accordion?
I have an UpdatePanel and inside that I have an Accordion and several panes. From the first pane i can push three ImageButtons. Each imagebutton will load a control into a Placeholder in another Pan - still in the same accordion though. The problem accur when I push the buttons. After two or three push the buttons will stop responding and nothing gets loaded into the Placeholder. [Code]....
Posted: May 09, 2010 07:52 AM
View 1 Replies!
View Related
AJAX :: Accordion Control With Panel - Add Update?
I have an accordion control in my web site. And in one of the panels, I have a drop down list box where, when the user selects an item, it updates the labels right below the ddlistbox. I have it so that it maintains the scroll position when the ddlistbox has an autopostback, but it's very obvious that the whole page posts back. My question is, can I/should I just enclose the ddlistbox and the labels (and a couple of text boxes) in an AJAX update panel? I already have a ToolScriptManager (because of the accordion control), so I don't need to have another script manager, right? I can just put the update panel (with the other controls inside of it) right in the accordion panel, right? Then when the ddlistbox posts back it won't have the delay of the whole page posting back? And it'll still execute the event handler for the listbox selection change? Does this sound right? I'm just looking to make the post back "invisible", and I would like to do a partial postback of just these few controls.
Posted: Aug 22, 2010 06:26 PM
View 4 Replies!
View Related
AJAX :: Collapsible Panel / Accordion Pane Actually Occur?
I am considering using ad management software which allows for the differentiation between an "impression / view" and a "click" of html code or image tags, and wish to use it by displaying similarly coded ads in Ajax Tookit's Accordion Pane (content) and/or Toolkit's CollapsiblePanel. From a technical point of view, when does loading of the content of a collapsible panel or accordion pane actually occur ? and can it be changed to only load when these elements are opened ? or does loading actually occur even if the pane/panel is closed? Essentially, most ad management software loads a script associated with an advert in the form of an image or html. Typically when a page is loaded, and when the image/ad is displayed the ad management software automatically registers an "impression or view" I am interested in finding out if there is a technical difference between loading such items in a standard page, and loading similar code within an accordion pane's "content" section or within a collapsiblePanelExtender's panel component. Does anyone have any comment or exerience with the above mentioned issues.
Posted: Nov 09, 2009 06:41 PM
View 1 Replies!
View Related
AJAX :: Send A Parameter Value To A Datasource Within An Accordion Panel?
i have an accordion panel that is loading its values from a datasource, which is working fine. let's say it loads the 50 states from the states table. now inside each accordion panel, when expanded, i want to load a gridview with details of that specific state. also, i want to pull all the cities into another gridview from the cities table with stateID=@stateID. i know this should be simple, but how do i pass the value of the stateID to the datasource of cities gridview? what is the syntax? the abbreviated code i have so far is: <cc1:Accordion ID="Accordion1" runat="server" DataSourceID="StatesDataSource" > <HeaderTemplate > <asp:Literal ID="ltrHeader" runat="server" Text='<%# Eval("name") %>'></asp:Literal> </HeaderTemplate> [Code]....
Posted: Oct 11, 2010 06:59 PM
View 1 Replies!
View Related
AJAX :: Click In Textbox Sets Pane In Accordion Panel?
I have webform with 4 textboxes in a panel and next to that panel a panel with an accordion with 4 panes in it. Without a refresh on every click, I would like to set the index of the accordion on the click in a textbox. so if the user puts the cursor in the first textbox, the first pane is expanded, if he clicks in the 2nd, the second pane is expanded, etc.. I tried it with: txtRequestorName.Attributes.Add("onclick", "javascript:$find('InfoRequestorAccordion').set_selectedindex(1); ") but that is not working. Is there another way or is it just not possible? rg, Eric
Posted: Dec 01, 2010 07:27 AM
View 9 Replies!
View Related
AJAX :: Repeater - Accordion Not Working
I have a repeater that contains an accordion. Inside the accordion, I have contents that consist of a <table> and text boxes, labels, buttons, the whole shooting match. When my code runs the contents all load no problem. The only problem is that my accordion is not working. There is no accordion function and all panes are expanded and I can't un expand them. Below is my source code. [Code]....
Posted: May 13, 2010 02:46 PM
View 2 Replies!
View Related
AJAX :: Accordion Not Working With Master Pages
I posted this in the other section before I realized this would be the more appropriate place. Anyhow, here is the issue. If I take the simplest masterpage and add a content page with nothing but the simplest accordion with 2 panes, it does not work properly. If I take it off the master page and just have html, it works great. Here is the code for both. First as html which works, then the content page and master page which doesn't. There is no code behind code in any case. <%@ Page Language="VB" AutoEventWireup="false" CodeFile="ExpenseSpreader.aspx.vb" Inherits="Admin_ExpenseSpreader" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" [URL]> <head id="Head1" runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <div> <asp:ScriptManager id="ScriptManager1" runat="server"> </asp:ScriptManager> <ajaxToolkit:Accordion ID="Accordion1" runat="server" FadeTransitions="false" FramesPerSecond="40" TransitionDuration="250" AutoSize="None"> <Panes> <ajaxToolkit:AccordionPane ID="p1" runat=server > <Header> <a href="" onclick="return false;" >Pane1</a>...........
Posted: Oct 31, 2006 01:00 PM
View 4 Replies!
View Related
AJAX :: Hyperlink On Accordion Header - Not Working?
I'm using an accordeon to display a site menu. It's binded on a SiteMapDataSource with no pb. <HeaderTemplate> <asp:HyperLink runat="server" ID="hyperlink" NavigateUrl='<%#Eval("Url")%>' ><%#Eval("Title")%></asp:HyperLink> [Code].... The link on the header is well made (right click, open in new window, and i get the right page), but if I click it like a normal hyperlink, nothing happens, except that the pane opens if needed. Am I doing something wrong, or is it just not possible to use hyperlink on accordion header?
Posted: Jan 11, 2007 10:44 AM
View 5 Replies!
View Related
AJAX :: Nested Accordion Control Not Working
Can anyone tell me why the following nested Accordion control does not work? [Code].... The error I kept getting is this: DataSource 'sql1980s' for control 'acd1980s' doesn't exist Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Web.HttpException: DataSource 'sql1980s' for control 'acd1980s' doesn't exist Source Error: [Code]....
Posted: Feb 22, 2010 03:18 PM
View 1 Replies!
View Related
AJAX :: Update Panel - Asp Panel Not Working Properly
I'm new to the world of Update Panels and i'm having a hard time figuring out how to use them properly. I have a form that has a table(TABLE1)...and inside TABLE1 i am linking to a sql data source....at the bottom of the table i have a 'Add' button. When the user clicks the add button...a modal popup appears (POPUP1) and inside the POPUP1 the user can click a link that can add a user...when the link button is clicked...a panel within POPUP1 is set to visible = true. I have one update panel around the whole table and the add button...when i click add and then click the link to add a user....the modal popup disappears.
Posted: Jun 08, 2010 05:51 PM
View 2 Replies!
View Related
AJAX :: Accordion Panes Not Working In Internet Explorer
I am creating an accordion dynamically through aspx.cs file. There is a subaccordion inside each accordion pane. I am seeing that if there are 10 or more accordion panes in the root accordion, then I can only expand first 4 or 5 panes. Nothing happens when I click on other panes. This is happening in IE8, tried on three different machines. I don't see this problem with Mozilla, it can open as many panes as possible, I have tried with 20 panes in mozilla.
Posted: Feb 24, 2010 07:47 PM
View 1 Replies!
View Related
AJAX :: Accordion Inside CollapsiblePanelExtender - Internet Explorer Not Working
Imports System Imports System.Data Imports System.Data.OleDb Imports System.Web Imports System.Web.UI Imports System.Xml Imports System.IO Imports System.EventArgs Imports System.Web.UI.HtmlControls Imports System.Web.UI.WebControls Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim div1, divana As New HtmlGenericControl("div") Dim lbl As New Label Dim imgbt As New ImageButton Dim acp As New AjaxControlToolkit.CollapsiblePanelExtender Dim aacc As New AjaxControlToolkit.Accordion Dim aap, aap2 As New AjaxControlToolkit.AccordionPane Dim cnt As New ContentPlaceHolder Dim pnl As New Panel Dim pnlana As New Panel Dim cssUrl As String Dim cssLink As New HtmlLink() Dim i,n,k,p As Integer Dim bag As New OleDbConnection Dim s As String 'stylesheet add cssUrl = Server.MapPath("daban.ccs") cssLink.Href = cssUrl cssLink.Attributes.Add("rel", "stylesheet") cssLink.Attributes.Add("type", "text/css") Page.Header.Controls.Add(cssLink) '---------- find content cnt = DirectCast(Me.Master.FindControl("ContentPlaceHolder1"), ContentPlaceHolder) divana.ID = "Divana" divana.Attributes("Style") = "padding:20px" '---- 1. group div1 = New HtmlGenericControl("div") div1.ID = "divduyana" div1.Attributes("Style") = "padding-bottom:20px;color:#5377A9;font-family:Arial, Sans-Serif;font-weight:bold;font-ize:1.5em;" lbl = New Label lbl.ID = "lblana" lbl.Text ="DUYURULAR..." div1.Controls.Add(lbl) divana.Controls.Add(div1) '-----1 group end n=3 ' normally it is getting from database For i = 1 To n '---- 2 group start pnl = New Panel pnl.ID = "Duy" + i.ToString() + "_1" pnl.Width = 600 pnl.Height = 30 pnl.HorizontalAlign = HorizontalAlign.Center 'image div1 = New HtmlGenericControl("div") div1.ID = "divimg" + i.ToString() div1.Attributes("Style") = "float: left; vertical-align: middle;" imgbt = New ImageButton imgbt.ID = "imgbt" + i.ToString() imgbt.ImageUrl = "~/image/expand_blue.jpg" imgbt.AlternateText = "Detaylari Goster..." div1.Controls.Add(imgbt) pnl.Controls.Add(div1) 'label div1 = New HtmlGenericControl("div") div1.ID = "divlblduy" + i.ToString() div1.Attributes("Style") = "float: left;" lbl = New Label lbl.ID = "lblduy" + i.ToString() lbl.Text = "lbl_text balabala" lbl.ForeColor = Drawing.Color.Red div1.Controls.Add(lbl) pnl.Controls.Add(div1) ' label detay goster div1 = New HtmlGenericControl("div") div1.ID = "divlbldet" + i.ToString() div1.Attributes("Style") = "float: rigth;" lbl = New Label lbl.ID = "lbldet" + i.ToString() lbl.Text = "(Detaylari Goster...)" lbl.ForeColor = Drawing.Color.Gray div1.Controls.Add(lbl) pnl.Controls.Add(div1) divana.Controls.Add(pnl) '----- 2 group end '----- 3 group start pnl = New Panel pnl.ID = "Duy" + i.ToString() + "_2" pnl.Width = 600 ' accordino aacc = New AjaxControlToolkit.Accordion aacc.ID = "Acc" + i.ToString() k=2 ' normally coming from database For t = 1 To k aap = New AjaxControlToolkit.AccordionPane aap.ID = "Apane" + i.ToString() + "_" + t.ToString() aap.HeaderContainer.Controls.Add(New LiteralControl("anyname")) aap.ContentContainer.Controls.Add(New LiteralControl("anycontent")) aacc.Panes.Add(aap) Next aacc.HeaderCssClass = "accordionHeader" aacc.ContentCssClass = "accordionContent" pnl.Controls.Add(aacc) acp = New AjaxControlToolkit.CollapsiblePanelExtender acp.ID = "acp" + i.ToString() acp.TargetControlID = "Duy" + i.ToString() + "_2" acp.ExpandControlID = "Duy" + i.ToString() + "_1" acp.CollapseControlID = "Duy" + i.ToString() + "_1" acp.Collapsed = True acp.TextLabelID = "lbldet" + i.ToString() acp.ImageControlID = "imgbt" + i.ToString() acp.ExpandedText = "(Detaylari Gizle...)" acp.CollapsedText = "(Detaylari Goster...)" acp.ExpandedImage ="~/image/collapse_blue.jpg" acp.CollapsedImage = "~/image/expand_blue.jpg" acp.SuppressPostBack = True 'acp.SkinID = "CollapsiblePanelDemo" cnt.Controls.Add(acp) div1 = New HtmlGenericControl("div") ' this is just i add extra div1.ID = "divara" + i.ToString() div1.Attributes("Style") = "float: left;" divana.Controls.Add(div1) divana.Controls.Add(pnl) Next '----3 group end... cnt.Controls.Add(divana) End Sub <ASPX code is> <%@ Page Language="VB" MasterPageFile="~/tiyap.master" AutoEventWireup="false" CodeFile="duyurular.aspx.vb" Inherits="duyurular" title="Untitled Page" %> <%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="ajaxToolkit" %> <asp:Content ID="Content1" runat="server" contentplaceholderid="ContentPlaceHolder1"> <ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"> </ajaxToolkit:ToolkitScriptManager> </asp:Content> there is no error... code is working on mozzila firefox, like what i want <div> - collespand 1 -----accordion 1 -------acc pane 1 -------acc pane 2 - collespand 2 -----accordion 2 -------acc pane 3 -------acc pane 4 - collespand 3 -----accordion 3 -------acc pane 5 -------acc pane 6 <div> but when i run this code inside internet explorer any version ... result became - collespan1 ---acc 1 ------ accpane1 ------accpane2 ----------collespan2 all going inside collespan1? what is the problem? why firefox is working ok, internet explorer not. it is a bug or i write something wrong
Posted: Feb 21, 2010 11:44 AM
View 6 Replies!
View Related
AJAX :: Visual Studio 2008 And Auto Generated Code For Accordion Accordion Extender?
I run into this problem while playing with accordion for a project. Sometimes VS 2008 auto generates code, without me wanting to!!!. Less generally I have an Accordion with 2 Accordion Panes in it. When modifing properties of the Accordion VS 2008 adds an Accordion extender and duplicates the two Accordion Panes! My original code [Code].... My code after pressing space between the properties of the Accordion [Code].... [Code]....
Posted: Mar 02, 2011 07:30 AM
View 1 Replies!
View Related
AJAX :: Error In The Accordion Control / Type 'AjaxControlToolkit.Accordion' Does Not Have A Public Property Named 'AccordionPane'
i downloaded AJAX Control Toolkit 10618 sometime ago & found this error in the accordion control Error #1 - Panes could not be initialized. Details: '' could not be added to the collection. Details: object doesn't match target type. I also noted while adding accordion panels in the collection using the GUI tool [through property pages], the <Panes></Panes> tag is not included in the XML Declarative code? & when we check the design time it says Error #2 - Type 'AjaxControlToolkit.Accordion' does not have a public property named 'AccordionPane'. On the other hand the downloaded solution - AjaxControlToolkit solution never showns error no. 1 - am i lacking a reference in my personal project which can't render the control at design time
Posted: Sep 23, 2007 05:16 PM
View 17 Replies!
View Related
AJAX :: Collapsible Panel Is Not Working At All
I put the new DLL in my bin folder in my solution. Setup a Collapsible panel by dragging from ACT to page. Everythings setup according to standard as far as I can tell. The darn thing refuses to work. I thought using the DLL took care of all styles, images, etc so that I didn't have to add those as separate files to my project. I did jerryrig it to kind of expand and collapse. But the darn thing just expands a little, then collapses back up. What could be going on?
Posted: Dec 15, 2009 08:30 PM
View 2 Replies!
View Related
AJAX :: FileUpload Is Not Working In Update Panel
I am facing a problem in FileUpload controls that is available inside update panel along with CalendarExtender. Now When I click on submit button after browse a file it is returning null fileobject value in codebehind page. [Code].... I dont know what is the reason behind of this problem, can you let me know what is the cause and probable solution for this.
Posted: Feb 12, 2011 08:52 AM
View 2 Replies!
View Related
AJAX :: Update Panel Within Tab Container Not Working?
I have a problem doing a partial page post back with an update panel within a tab container. I am adding the control programmatically as follows [Code].... The controls are added to the tab container but the button now causes a full page postback. The button_click event is no longer called. Is there something I am missing here.
Posted: May 19, 2010 12:55 PM
View 4 Replies!
View Related
AJAX :: Update Panel Not Working In Firefox
Environment used : asp.net 2008 webapplication with c# problem : here is my code : default.aspx <form id="form1" runat="server"> <iframe id ="captchaframe" src="test.aspx"></iframe> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:Button id="Button1" runat="server" Text="refresh" onclick="Button1_Click"></asp:Button> </ContentTemplate> </asp:UpdatePanel> </form> default.aspx.cs protected void Button1_Click(object sender, ImageClickEventArgs e) { Session["CaptchaImageText"] = GenerateRandomCode(); StringBuilder sb = new StringBuilder(); sb.AppendLine("$(document).ready(function() {"); sb.AppendLine(@"document.frames['captchaframe'].location.reload(true);"); sb.AppendLine(" });"); ScriptManager requestSM = ScriptManager.GetCurrent(this); if (requestSM != null && requestSM.IsInAsyncPostBack) { ScriptManager.RegisterClientScriptBlock(this, typeof(Page), Guid.NewGuid().ToString(), sb.ToString(), true); } else { ClientScript.RegisterClientScriptBlock(typeof(Page), Guid.NewGuid().ToString(), sb.ToString(), true); } } I want to just refresh the iframe on button click without whole page postback.so i have used update panel for removing postback and easily refresh iframe .I works in IE, but not working in firefox.
Posted: Jan 04, 2010 10:04 AM
View 1 Replies!
View Related
AJAX :: Collapsible Panel Extender Not Working
I just tried a simple page with a collapsible panel extender, following the tutorial video at asp.net/ajax/videos. When clicking on the header panel, nothing happens. I have gone through countless posts looking for the answer, I have not found a solution. When viewing the page using IE, it shows a page error: Object expected. The cpe does not work in any browser; it does not work on my local machine or production server. As far as I know, the Ajax Control Toolkit was installed correctly; the .dll is in the bin folder. see this link for the page in question: [URL] Below is the code for the page: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="CollapsiblePanelExtender.aspx.cs" Inherits="CollapsiblePanelExtender" %> <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL]"> <html xmlns="[URL]"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:Panel ID="HeaderPanel" runat="server" Style="background-color: rgb(230,230,230); cursor: pointer;"> <asp:Image ID="Image1" runat="server" ImageUrl="~/MasterFiles/images/collapse.jpg" /> AJAX Collapsible Panel Test <asp:Literal ID="Literal1" runat="server">(Show Details...)</asp:Literal> </asp:Panel> <asp:Panel ID="ContentPanel" runat="server" Style="height: 0px; overflow: hidden;"> <h4>Some Details Content here.</h4> </asp:Panel> <asp:CollapsiblePanelExtender ID="ContentPanel_CollapsiblePanelExtender" runat="server" Enabled="True" TargetControlID="ContentPanel" CollapseControlID="HeaderPanel" ExpandControlID="HeaderPanel" Collapsed="true" ImageControlID="Image1" ExpandedImage="~/MasterFiles/images/collapse.jpg" CollapsedImage="~/MasterFiles/images/expand.jpg" TextLabelID="Literal1" CollapsedText="Show Details..." ExpandedText="Hide Details..." SuppressPostBack="true" ExpandDirection="Vertical"> </asp:CollapsiblePanelExtender> </div> </form> </body> </html>
Posted: Feb 12, 2011 10:50 PM
View 1 Replies!
View Related
AJAX :: Drag Panel Not Working Properly
<ajaxToolkit:DragPanelExtender ID="DragPanelExtender1" runat="server" TargetControlID="PnlContainer" DragHandleID="PnlHeader"> </ajaxToolkit:DragPanelExtender> <div id="div_disc" runat="server" > <asp:Panel ID="PnlContainer" runat="server" BackColor="BurlyWood" Height="185px" Width="589px"> <asp:Panel ID="PnlHeader" runat="server" BackColor="Beige" Width="571px" style="text-align: center" Font-Bold="True" Height="24px">Drag me</asp:Panel> <asp:Panel ID="PnlDetail" runat="server" Width="586px"> matter </asp:Panel> </asp:Panel> </div> it goes back to the orignial position on dragging if i use the style property , it does move but not as desired even with the click it movesdown nt able to deag and place as where needed.
Posted: Jun 26, 2010 09:36 AM
View 8 Replies!
View Related
AJAX :: Collapsible Panel Extender Not Working On IE8
I am using a collabsible extender to build a side menu on my master page. I add 5 collabsible panel extenders wtih each one containing the subsections. My problem is that in IE8 only the last CPE works. The other 4 do nothing when you click them. They are all being generated dynamically. Has anyone had any probles with a CPE and IE8. It works fine on every other browser (Firefox, Chrome, Safari, IE 6 and 7)
Posted: Dec 17, 2009 11:09 PM
View 2 Replies!
View Related
Ajax Collaps Panel Not Working In Application?
i am going to implement the collapsiblepane in my application but it is not getting any thing just two link buttons this is my code CollapsiblePanelExtender ID="CollapsiblePanelExtender1" AutoCollapse ="False" AutoExpand ="false" ScrollContents ="true" TargetControlID ="mypanel" Collapsed ="true" CollapsedSize ="0" ExpandedSize ="300" ExpandControlID ="mylink" CollapseControlID ="mylink2" CollapsedText ="Show Details..." ExpandedText ="Hide Details..." runat="server"> </cc1:CollapsiblePanelExtender> <asp:Panel ID ="mypanel" runat ="Server" Visible ="False" > <asp:TextBox ID="txt" runat ="server" ></asp:TextBox><br /> <asp:Button ID="btn" runat ="Server" Text ="Click" /> </asp:Panel> <asp:LinkButton ID="mylink" runat ="Server" Text ="Mydetaails" OnClick="mylink_Click" ></asp:LinkButton> <asp:LinkButton ID="mylink2" runat ="Server" Text ="HideMydetails" OnClick="mylink2_Click" ></asp:LinkButton>
Posted: Feb 6 10 at 5:28
View 1 Replies!
View Related
Mathtran Not Working With Ajax Update Panel?
I am attempting to put tex images onto my website using mathtran. Instructions for how to do this are on http://www.mathtran.org/wiki/index.php/TeX_image. Basically you just include <script type="text/javascript" src="http://www.mathtran.org/js/mathtran_img.js"></script> inthe head of your html page. Then the code <img alt="tex:<math formula>" /> will render any maths as images. [code]...
Posted: Nov 05, 2009 08:24 PM
View 4 Replies!
View Related
AJAX :: Update Panel Flicker And Not Working?
I want to create a searching work to fill the gridview detail acc to seach params.. When we enter text into search textbox it fills the grid, that works filne without postback. After this i have to fill the form values accroding to link clicked in Gridview. I uses the updatapanel in grid like [Code].... When the grid fills it doesnt fill my form... why it happens.. i used the Updatapanels multiple as well.. If i use the Updatepanel in whole.. it may flicker while filling in the form values.
Posted: Oct 13, 2010 05:37 PM
View 2 Replies!
View Related
AJAX :: MaskedEditValidator And Panel's DefaultButton Not Working?
I have a panel, with several textboxes and an ImageButton inside of it. One of the textboxes has a MaskedEditExtender and a MaskedEditValidator associated with it. When I hit enter from any other textbox besides the one with the MaskedEditValidator the defaultbutton that is defined in the Panel's DefaultButton property handles the enter key.However, when I am in the textbox with the MaskedEditValidator, the first button on the form is receiving the enter key. Now, if I take the MaskedEditExtender off of the page, and just leave the MaskedEditExtender, everything behaves as it should.Can anyone offer any insight into how I may get this to work properly, or is this a known bug?I tried searching the forums and found a similar post, but no conclusion was ever reached.
Posted: Mar 16, 2010 01:46 PM
View 3 Replies!
View Related
|