Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
112 views

I have a Tab with 2 panels.  And a Multipage control with 2 pageviews.  Each page view has a asp:button on it that I use AJAX to save the data back to the server.  Once the asp:button event is called, the tab strip stops working, will not change values and no page view change.

From reading other post I tried setting the autopost to false and changing the cause validation to false, but with no luck...  Please help...

<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="cphBody">
    <div id="cbody">
        <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" ClientIDMode="Static">
        <telerik:RadTabStrip ID="rtsProfile" runat="server" MultiPageID="rmpTabStripPanels"
            SelectedIndex="0" Skin="Outlook" ClientIDMode="Static" CausesValidation="False">
            <Tabs>
                <telerik:RadTab runat="server" Text="User Profile" Selected="True" PostBack="False">
                </telerik:RadTab>
                <telerik:RadTab runat="server" Text="Change Password" PostBack="False">
                </telerik:RadTab>
            </Tabs>
        </telerik:RadTabStrip>
            <telerik:RadMultiPage ID="rmpTabStripPanels" runat="server" SelectedIndex="0">
                <telerik:RadPageView ID="rpvUserProfile" runat="server">
                    <table>
                        <tr valign="top">
                            <td colspan="3">
                                <h2>
                                    User Profile</h2>
                            </td>
                        </tr>
                        <tr valign="top">
                            <td colspan="3">
                                <p>
                                    Please fill in the information below. This information will be inserted into your
                                    letters to your bank and creditors. My Road To Recovery will email you alerts and
                                    other communications when you have actions that need to be taken. If you wish to
                                    receive SMS text messages, please provide your cell phone number and click the “YES”
                                    box next to the SMS text option.
                                </p>
                                <p>
                                    You can edit your information at any time. Please be sure to click the “Save” button
                                    at the bottom of the page.</p>
                            </td>
                        </tr>
                        <tr valign="top">
                            <td style="width: 225px;">
                                <label>
                                    *First Name</label><br />
                                <asp:TextBox ID="txtFirstName" runat="server" SkinID="TextBox" Width="210" ClientIDMode="Static"></asp:TextBox><br />
                                <asp:RequiredFieldValidator ID="rfvFirstName" runat="server" Display="Dynamic" ControlToValidate="txtFirstName"
                                    ErrorMessage="First name is required." ValidationGroup="SaveRecord" CssClass="error_message"
                                    SetFocusOnError="true">
                                </asp:RequiredFieldValidator>
                            </td>
                            <td style="width: 225px;">
                                <label>
                                    *Last Name</label><br />
                                <asp:TextBox ID="txtLastName" runat="server" SkinID="TextBox" Width="210" ClientIDMode="Static"></asp:TextBox><br />
                                <asp:RequiredFieldValidator ID="rfvLastName" runat="server" Display="Dynamic" ControlToValidate="txtLastName"
                                    ErrorMessage="Last name is required." ValidationGroup="SaveRecord" CssClass="error_message"
                                    SetFocusOnError="true">
                                </asp:RequiredFieldValidator>
                            </td>
                            <td style="width: 250px;">
                                <label>
                                    Date of Birth (MM/DD/YYYY)</label><br />
                                <telerik:RadDateInput ID="txtDOB" runat="server" DateFormat="MM/dd/yyyy" SkinID="RadDateInput"
                                    Width="210" MinDate="1900-01-01" ClientIDMode="Static">
                                </telerik:RadDateInput><br />
                            </td>
                        </tr>
                        <tr valign="top">
                            <td>
                                <label>
                                    Social Security Number</label><br />
                                <telerik:RadMaskedTextBox ID="txtSSNumber" runat="server" SkinID="RadMaskedTextBox"
                                    Width="212" Mask="###-##-####" ClientIDMode="Static">
                                </telerik:RadMaskedTextBox><br />
                                <asp:RegularExpressionValidator ID="revSSN" runat="server" Display="Dynamic" ControlToValidate="txtSSNumber"
                                    ErrorMessage="Valid social security number is required." ValidationExpression="\d{3}-\d{2}-\d{4}"
                                    ValidationGroup="SaveRecord" CssClass="error_message" SetFocusOnError="true">
                                </asp:RegularExpressionValidator>
                            </td>
                            <td>
                                <label>
                                    *Telephone Number</label><br />
                                <telerik:RadMaskedTextBox ID="txtTelephoneNumber" runat="server" SkinID="RadMaskedTextBox"
                                    Width="212" Mask="(###)-###-####" ClientIDMode="Static">
                                </telerik:RadMaskedTextBox><br />
                                <asp:RegularExpressionValidator ID="revTelephoneNumber" runat="server" Display="Dynamic"
                                    ControlToValidate="txtTelephoneNumber" ErrorMessage="Valid telephone number is required."
                                    ValidationExpression="\(\d{3}\)-\d{3}-\d{4}" ValidationGroup="SaveRecord" CssClass="error_message"
                                    SetFocusOnError="true">
                                </asp:RegularExpressionValidator>
                            </td>
                            <td align="left">
                                <table width="100%" cellpadding="0" cellspacing="0">
                                    <tr>
                                        <td colspan="2" align="left">
                                            <label>
                                                Cell Phone Number</label><br />
                                        </td>
                                    </tr>
                                    <tr valign="bottom">
                                        <td align="left">
                                            <telerik:RadMaskedTextBox ID="txtCellPhoneNumber" runat="server" SkinID="RadMaskedTextBox"
                                                Width="105" Mask="(###)-###-####" ClientIDMode="Static">
                                            </telerik:RadMaskedTextBox>
                                        </td>
                                        <td align="left" style="white-space: nowrap;">
                                            <asp:CheckBox ID="chkSMSOptionOut" runat="server" Text="Receive Text Messages" />
                                        </td>
                                    </tr>
                                    <tr>
                                        <td colspan="2" align="left">
                                            <asp:RegularExpressionValidator ID="revCellPhoneNumber" runat="server" Display="Dynamic"
                                                ControlToValidate="txtCellPhoneNumber" ErrorMessage="Valid cell phone number is required."
                                                ValidationExpression="\(\d{3}\)-\d{3}-\d{4}" ValidationGroup="SaveRecord" CssClass="error_message"
                                                SetFocusOnError="true">
                                            </asp:RegularExpressionValidator>
                                        </td>
                                    </tr>
                                </table>
                            </td>
                        </tr>
                        <tr valign="top">
                            <td colspan="2">
                                <table cellpadding="0" cellspacing="0" width="100%">
                                    <tr valign="bottom">
                                        <td align="left" style="white-space: nowrap;">
                                            <label>
                                                *Email</label><br />
                                            <asp:TextBox ID="txtEmail" runat="server" SkinID="TextBox" Width="212" ClientIDMode="Static"> </asp:TextBox>
                                            <asp:CheckBox ID="chkEmailOptionOut" runat="server" Text="Receive Email Messages"
                                                ClientIDMode="Static" />
                                        </td>
                                    </tr>
                                    <tr>
                                        <td colspan="2">
                                            <asp:RequiredFieldValidator ID="rfvEmail" runat="server" Display="Dynamic" ControlToValidate="txtEmail"
                                                ErrorMessage="Valid email address is required." ValidationGroup="SaveRecord"
                                                CssClass="error_message" SetFocusOnError="true">
                                            </asp:RequiredFieldValidator><asp:RegularExpressionValidator ID="revEmail" runat="server"
                                                Display="Dynamic" ControlToValidate="txtEmail" ErrorMessage="Valid email address is required."
                                                ValidationExpression="^[\w\.\-]+@[a-zA-Z0-9\-]+(\.[a-zA-Z0-9\-]{1,})*(\.[a-zA-Z]{2,3}){1,2}$"
                                                ValidationGroup="SaveRecord" CssClass="error_message" SetFocusOnError="true">
                                            </asp:RegularExpressionValidator>
                                        </td>
                                    </tr>
                                </table>
                            </td>
                            <td>
                                <label>
                                    *Street Address</label><br />
                                <asp:TextBox ID="txtStreetAddress" runat="server" Width="212" ClientIDMode="Static"
                                    SkinID="TextBox">
                                </asp:TextBox><br />
                            </td>
                        </tr>
                        <tr valign="top">
                            <td>
                                <label>
                                    City</label><br />
                                <telerik:RadTextBox ID="txtCity" runat="server" Width="212" ClientIDMode="Static"
                                    SkinID="RadTextBox">
                                </telerik:RadTextBox><br />
                            </td>
                            <td>
                                <label>
                                    State</label><br />
                                <telerik:RadTextBox ID="txtState" runat="server" Width="212" ClientIDMode="Static"
                                    SkinID="RadTextBox">
                                </telerik:RadTextBox><br />
                            </td>
                            <td>
                                <label>
                                    ZIP Code</label><br />
                                <telerik:RadMaskedTextBox ID="txtZipCode" runat="server" SkinID="RadMaskedTextBox"
                                    AutoPostBack="true" Width="210" Mask="#####" ClientIDMode="Static">
                                </telerik:RadMaskedTextBox><br />
                                <asp:RegularExpressionValidator ID="revZipCode" runat="server" Display="Dynamic"
                                    ControlToValidate="txtZipCode" ErrorMessage="Valid zip code is required." ValidationExpression="\d{5}"
                                    ValidationGroup="SaveRecord" CssClass="error_message" SetFocusOnError="true">
                                </asp:RegularExpressionValidator><asp:Label ID="lblZipError" runat="server" Text="Valid zip code is required."
                                    CssClass="error_message" Visible="False"></asp:Label>
                            </td>
                        </tr>
                        <tr valign="top">
                            <td colspan="3" align="left">
                                <asp:Button ID="btnSave" runat="server" Text="Save" ValidationGroup="SaveRecord" /><asp:Label
                                    ID="lblError" runat="server" ForeColor="Red"></asp:Label>
 
                            </td>
                        </tr>
                    </table>
                </telerik:RadPageView>
                <telerik:RadPageView ID="rpvChangePassword" runat="server">
                    <table width="100%">
                        <tr valign="top">
                            <td>
                                <h2>
                                    Change Password</h2>
                            </td>
                        </tr>
                        <tr valign="top">
                            <td>
                                <p>
                                    You can change your password at any time. Simply enter your old password and then
                                    enter your new password twice. Be sure to click the “Save” button on the bottom
                                    of the page.
                                </p>
                            </td>
                        </tr>
                        <tr>
                            <td align="left">
                                <label>
                                    Old Password</label>
                                <br />
                                <asp:TextBox ID="txtOldPassword" runat="server" TextMode="Password" SkinID="TextBox"
                                    Width="200"></asp:TextBox><br />
                                <asp:RequiredFieldValidator ID="rfvOldPassword" runat="server" Display="Dynamic"
                                    ControlToValidate="txtOldPassword" ErrorMessage="Old password is required." ValidationGroup="SavePassword"
                                    CssClass="error_message" SetFocusOnError="true"></asp:RequiredFieldValidator><asp:CustomValidator
                                        ID="cusOldPassword" runat="server" ControlToValidate="txtOldPassword" CssClass="error_message"
                                        Display="Dynamic" ErrorMessage="Incorrect Old Password entered." SetFocusOnError="True"
                                        ValidationGroup="SavePassword"></asp:CustomValidator>
                            </td>
                        </tr>
                        <tr>
                            <td align="left">
                                <label>
                                    New Password</label>
                                <br />
                                <asp:TextBox ID="txtNewPassword" runat="server" TextMode="Password" SkinID="TextBox"
                                    Width="200"></asp:TextBox>
                                <label style="font-weight: normal;">
                                    (Min 5 characters and have at least 1 number or symbol)</label>
                                <br />
                                <asp:RequiredFieldValidator ID="rfvNewPassword" runat="server" Display="Dynamic"
                                    ControlToValidate="txtNewPassword" ErrorMessage="New password is required." ValidationGroup="SavePassword"
                                    CssClass="error_message" SetFocusOnError="true"></asp:RequiredFieldValidator>
                                <asp:RegularExpressionValidator ID="revPassword" runat="server" Display="Dynamic"
                                    ControlToValidate="txtNewPassword" ErrorMessage="Min 5 characters and have at least 1 number or symbol is required."
                                    ValidationExpression="^.*(?=.*[a-zA-Z]{5,})((?=.*\d)|(?=.*\W)).*$" ValidationGroup="SavePassword"
                                    CssClass="error_message" SetFocusOnError="true">
                                </asp:RegularExpressionValidator>
                            </td>
                        </tr>
                        <tr>
                            <td align="left">
                                <label>
                                    Confirm New Password</label>
                                <br />
                                <asp:TextBox ID="txtNewPasswordConfirm" runat="server" TextMode="Password" SkinID="TextBox"
                                    Width="200"></asp:TextBox><br />
                                <asp:RequiredFieldValidator ID="rfvNewPasswordConfirm" runat="server" Display="Dynamic"
                                    ControlToValidate="txtNewPasswordConfirm" ErrorMessage="Confirm password is required."
                                    ValidationGroup="SavePassword" CssClass="error_message" SetFocusOnError="true"></asp:RequiredFieldValidator><asp:CompareValidator
                                        ID="cvNewPasswordConfirm" runat="server" Display="Dynamic" ControlToValidate="txtNewPasswordConfirm"
                                        ControlToCompare="txtNewPassword" ErrorMessage="Confirm password do not match."
                                        ValidationGroup="SavePassword" CssClass="error_message" SetFocusOnError="true">
                                    </asp:CompareValidator>
                            </td>
                        </tr>
                        <tr>
                            <td align="left">
                                <asp:Button ID="btnSavePassword" runat="server" Text="Save" ValidationGroup="SavePassword" />
                      
                            </td>
                        </tr>
                    </table>
                </telerik:RadPageView>
            </telerik:RadMultiPage>
        </telerik:RadAjaxPanel>
    </div>
</asp:Content>


Here is the server code

Protected Sub btnSave_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnSave.Click
    Try
        Dim dsCares As DataSet
        Dim drClient As DataRow
 
 
        dsCares = m_WSClient.client_get_only_Ex(m_SessionID, m_ClientID, m_ResultMsg)
        If IsDataTableValid(dsCares) = False Then
            lblError.Text = "Client ID Not found in database. Please contact Customer Care."
            Exit Try
        End If
 
        drClient = dsCares.Tables(0).Rows(0)
 
        drClient!FirstName = txtFirstName.Text
        drClient!LastName = txtLastName.Text
        drClient!StreetAddress = txtStreetAddress.Text
        drClient!StreetCity = txtCity.Text
        drClient!StreetState = txtState.Text
        drClient!StreetZip = txtZipCode.Text
        drClient!SSN = txtSSNumber.TextWithLiterals
        drClient!Phone1 = txtTelephoneNumber.TextWithLiterals
        drClient!MobilePhone = txtCellPhoneNumber.TextWithLiterals
        drClient!Email = txtEmail.Text
        drClient!BirthDate = txtDOB.SelectedDate
 
        drClient!EmailOptOut = chkEmailOptionOut.Checked
        drClient!SMSOptOut = chkSMSOptionOut.Checked
 
        m_WSClient.client_update(m_SessionID, dsCares, m_ClientID, m_ResultMsg)
 
        'Client_AddHistory(Session, String.Format("Client Updated User Profile [{0}]", txtEmail.Text))
 
        'tipSave.Show()
 
    Catch ex As Exception
        GlobalErrorHandler(System.Reflection.MethodBase.GetCurrentMethod(), ex)
        'Debug.WriteLine("Error:" + ex.ToString)
    End Try
End Sub
 
 
Protected Sub btnSavePassword_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnSavePassword.Click
    Try
        Dim dtPasswd As WS_CLIENT.dsClients.ClientSecurityDataTable
 
        dtPasswd = m_WSClient.ClientSecurity_Filter_ClientID(m_SessionID, m_ClientID, m_ResultMsg)
        If IsDataTableValid(dtPasswd) = False Then
            cusOldPassword.ErrorMessage = "Unable to get old password. Contact Customer Care!"
            cusOldPassword.IsValid = False
            Exit Try
        End If
        If dtPasswd(0).ClientPassword <> txtOldPassword.Text Then
            cusOldPassword.ErrorMessage = "Incorrect Old Password entered."
            cusOldPassword.IsValid = False
            Exit Try
        End If
        ' password is valid
 
        Dim Ret = m_WSClient.ClientSecurity_Update(m_SessionID, m_ClientID, txtNewPassword.Text, 0, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, m_ResultMsg)
        ' tipSavePassword.Show()
 
    Catch ex As Exception
        GlobalErrorHandler(System.Reflection.MethodBase.GetCurrentMethod(), ex)
        'Debug.WriteLine("Error:" + ex.ToString)
    End Try
End Sub


Kate
Telerik team
 answered on 03 Oct 2011
1 answer
146 views
Hi,

I am searching for this functionality from many days. Radgrid provides the functionality to select multiple rows when I set AllowMultiRowSelection = true.

I can select multiple rows by holding shift or control key and click which I dont want. I want to use either by using shift key or control key. Is there any workaround for this?

Regards,
Aradhya
Shinu
Top achievements
Rank 2
 answered on 03 Oct 2011
1 answer
123 views
Is there no autobinding for drag\drop using an OpenAccess datasource or am I just missing the property\setting?

If there isn't can this be a PITS issue please :)  Way easier like the RadTreeList to drag\drop than having to manually handle OnDrop
Nikolay Tsenkov
Telerik team
 answered on 03 Oct 2011
3 answers
187 views
We've uninstalled Telerik RADEditor from our Sharepoint 2010 environment. The features were deactivated and uninstalled. The solution was retracted and uninstalled. But we still see remnants of the RADEditor on one of our front ends. This is the message we receive when we try to add a new task to a list:

Server Error in '/' Application.

Could not find a part of the path 'c:\_wpresources\RadEditorSharePoint\5.5.1.0__1f131a624888eeed\Resources\ListToolsFile.xml'.

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.IO.DirectoryNotFoundException: Could not find a part of the path 'c:\_wpresources\RadEditorSharePoint\5.5.1.0__1f131a624888eeed\Resources\ListToolsFile.xml'.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[DirectoryNotFoundException: Could not find a part of the path 'c:\_wpresources\RadEditorSharePoint\5.5.1.0__1f131a624888eeed\Resources\ListToolsFile.xml'.]
   System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) +239
   System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy) +2580
   System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy) +138
   System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize) +94
   System.Xml.XmlDownloadManager.GetStream(Uri uri, ICredentials credentials) +121
   System.Xml.XmlUrlResolver.GetEntity(Uri absoluteUri, String role, Type ofObjectToReturn) +65
   System.Xml.XmlTextReaderImpl.OpenUrlDelegate(Object xmlResolver) +76
   System.Threading.CompressedStack.runTryCode(Object userData) +118
   System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData) +0
   System.Threading.CompressedStack.Run(CompressedStack compressedStack, ContextCallback callback, Object state) +122
   System.Xml.XmlTextReaderImpl.OpenUrl() +5027836
   System.Xml.XmlTextReaderImpl.Read() +152
   System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace) +165
   System.Xml.XmlDocument.Load(XmlReader reader) +134
   System.Xml.XmlDocument.Load(String filename) +95
   Telerik.Web.UI.RadEditor.get_ToolsFileContent() +331
   Telerik.Web.UI.ToolsFileLoader.LoadColors(EditorColorCollection colors) +67
   Telerik.Web.UI.RadEditor.LoadToolsFile(Boolean loadOnlyEmptyCollections) +179
   Telerik.SharePoint.RadTextField.OnLoad(EventArgs e) +65
   System.Web.UI.Control.LoadRecursive() +66
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Control.LoadRecursive() +191
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2428


Version Information: Microsoft .NET Framework Version:2.0.50727.4961; ASP.NET Version:2.0.50727.4955 


Where do we remove the references so this doesn't appear? I don't see any references in the master pages or web.config. Any help is appreciated.

Thanks!
Stanimir
Telerik team
 answered on 03 Oct 2011
1 answer
82 views
Hi Telerik,

On clicking on Rating i need to display a radwindow or a popup with a textbox and button in it,a little bit similar to the one that you have given in your demo.http://demos.telerik.com/aspnet-ajax/rating/examples/rateandleavecomment/defaultcs.aspx.

Thanks,
Praveen
Slav
Telerik team
 answered on 03 Oct 2011
1 answer
70 views
I noticed that when I use the Telerik controls it adds a bunch of Http handlers and http modules, including a RADCompression one.  Can I assume the RAD compression handler compresses the AJAX controls (.axd files)?
Johny
Top achievements
Rank 1
 answered on 03 Oct 2011
7 answers
115 views
Hi all,

I have found out that when my data for x axis has mixed string and int values (even though they come in as "strings'" from the DB), I get an exception "Input string was not in a correct format." Looking at the call stack I see that it fails converting ToDouble.

Do you know any workarounds?

Note, this is a generic/dynamic solution, so I don't know what kind of data comes in. I allow users to select fields on the fly which they want to display on the chart. Then, I have code to populate the grid:

qbChart.Series.Clear();
t
his.qbChart.DataGroupColumn = this.ddlGroup.SelectedValue;
this.qbChart.PlotArea.XAxis.DataLabelsColumn = this.ddlX.SelectedValue;
sdsResults.ConnectionString = cm.css.ConnectionString;
sdsResults.SelectCommand = SQLString;             
this.qbChart.DataBind();

I would like to stick with sql datasource. IAlso, I do not have an option to convert values to int in DB.

Thank you.
Yavor
Telerik team
 answered on 03 Oct 2011
1 answer
120 views
Hi everybody

Can you please tell me how to fix the width of  columns.I have a radgrid.Coumns will be added to the existing grid depending on the selection in the radcomobobox.When I treid to add the columns the already existing columns start shriking .how to prevent this?


Thanks & regards
Princia D
Shinu
Top achievements
Rank 2
 answered on 03 Oct 2011
2 answers
75 views
hi,
i wanna know if i can add update/insert/delete functionality to the grid

and if it can genreate automatically, i tried AllowAutomaticUpdates="true" and its dont work


yaniv
Top achievements
Rank 1
 answered on 03 Oct 2011
1 answer
365 views
Hi All,

 I have created a radgrid .Rows inside the radgrid will depend on the selection made in the RadCombobox.So I have placed both Radgrid and  RadCombobox inside the Updateapnel ,because I don't want any postback.But the problems is whenever I change the items in Radcombobox I get Scripting error like "Microsoft JScript runtime error: Sys.InvalidOperationException: Could not find UpdatePanel with ID 'grdCustomerSuppliedRequirementsPanel'. If it is being updated dynamically then it must be inside another UpdatePanel".can you please tell me the solution for this.

Thanks in Advance
Princia D

Princy
Top achievements
Rank 2
 answered on 03 Oct 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?