Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
647 views
My problem is when i try to use Telerik.Web.SkinRegistrar.GetWebResourceUrl like this :

<

 

 

asp:ImageButton ID="btnEditExternalCollaborator" runat="server" ImageUrl='<%# Telerik.Web.SkinRegistrar.GetWebResourceUrl(Me, GetType(RadGrid), "Telerik.Web.UI.Skins.Office2007.Grid.Edit.gif") %>' ToolTip="btnEditExternalCollaboratorTooltip" />


in an usercontrol. Error is :

BC30311: Une valeur de type 'ASP.subject_psi_uccollaborators_ascx' ne peut pas ĂȘtre convertie en 'System.Web.UI.Page'.

How I can do in userontrol ?
Abhishek
Top achievements
Rank 2
 answered on 21 Jan 2012
2 answers
345 views
Hi,

I have some complicated scenario over here. I have one User control with one button, on click of this button modal popup is open up.
I need electives from below:

* Can same Panel control (Within modal popup) open in radtooltip? 

OR

* If I will make new user control and call this new user control as tooltip on parent user control's button?

Thanks,

Kaushal Jani
Kaushal
Top achievements
Rank 1
 answered on 21 Jan 2012
1 answer
133 views
Does the uploader have the ability to upload all files within a specific folder instead of uploading a file one by one.
Richard
Top achievements
Rank 1
 answered on 20 Jan 2012
10 answers
345 views
I use RadFilter on radgrid, everything worked just fine for a while, but after I added more features to the grid (show/hide column, exporting), all the sudden the filter stop working and throw error on "Sys.WebForms.PageRequestManagerServerErrorException: Object reference not set to an instance of an object.", after search I guess it might have something to do with exporting, I use external button for word exporting, but i am not using filter in the grid, I use RadFilter associate with the radgrid...any ideas?

Thanks,

Shan
Dave
Top achievements
Rank 1
 answered on 20 Jan 2012
0 answers
93 views
Good afternoon folks,
I have in my aspx page a form where user fill out all necessary information to sent email.The form contains numerious numbers of Telerik controls.
I have RadComboBox with autopostback = true(this is in the middle of the form).When user select from ComboBox 'Yes' or 'No' it fire event:

protected

 

void ddlAprv_SelectedIndexChanged1(object o, RadComboBoxSelectedIndexChangedEventArgs e)

 

{

 

RadPanelBar attestPanel = (RadPanelBar)formPanel.FindItemByValue("principalForm").FindControl("attestationPanel");

 

 

RadNumericTextBox jobPostNo = (RadNumericTextBox)attestPanel.FindItemByValue("principalattestaionInfo").FindControl("JobPostingNo");

 

 

RadComboBox ddlAprvPost = (RadComboBox)attestPanel.FindItemByValue("principalattestaionInfo").FindControl("ddlAprv");

 

 

RadComboBox ddlpost = (RadComboBox)attestPanel.FindItemByValue("principalattestaionInfo").FindControl("ddlPost");

 

 

if (ddlAprvPost.SelectedValue == "Y")

 

{

jobPostNo.Enabled =

true;

 

jobPostNo.Focus();

}

 

else

 

{

 

if (jobPostNo.Text.Length > 0)

 

{

jobPostNo.Text =

string.Empty;

 

}

jobPostNo.Enabled =

false;

 

ScriptManager1.SetFocus(ddlpost.ClientID +

"_Input");

 

 

 

}

}


 

 

Focus goes to the next Box and ask to put some numbers.This is working for IE8
But for IE7 focus is lost and form jump right to the top.

Please help me to resolve this issue.
Thanks

 

Vitaly
Top achievements
Rank 1
 asked on 20 Jan 2012
1 answer
293 views
Hi,

I am using radupload in my application. i want to display full path in the radupload textbox. but displaying file name only. i want to display full path like (c:/images/sampleImages/test.jpg). but in IE displaying (C;/fakepath/test.jpg). in FIREFOX displaying(test.jpg) and CHROME displaying (test.jpg). i want to display full path.

How to display full path in the radupload textbox.

Thanks in Advance,
Dhamu.
Richard
Top achievements
Rank 1
 answered on 20 Jan 2012
4 answers
240 views
Hi,

I have a RadWindowManager and open up RadWindows client-side through the manager control.
I'm not sure if I set a property wrong or what, but minimizing/restoring a radwindow causes the page inside the radwindow to postback.
Maximizing/restoring, moving, resizing the radwindow does not postback.  Only minimize/restore causes a postback.

The only client event I have on the RadWindowManager is OnClientBeforeClose
This is the manager:
<telerik:RadWindowManager ID="RadWindowManagerParent" runat="server" Animation="None" OffsetElementID="wrapper"
    MinimizeZoneID="DivMinimizeZone" RestrictionZoneID="TdContent" EnableTheming="true"
    AnimationDuration="250" DestroyOnClose="true" EnableShadow="true" IconUrl="~/Images/Blue/Window_Icon.png"
    PreserveClientState="true" ShowContentDuringLoad="false" ShowOnTopWhenMaximized="false"
    Width="1000" Height="650" VisibleStatusbar="false" ReloadOnShow="true" KeepInScreenBounds="false"
    Style="z-index: 2501;" Behaviors="Close,Maximize,Minimize,Move,Reload,Resize"
    OnClientBeforeClose="RadWindowManagerParentOnClientBeforeClose">
    <Windows>
    </Windows>
</telerik:RadWindowManager>

Any ideas?

Thanks!!!
Sam
Top achievements
Rank 1
 answered on 20 Jan 2012
5 answers
200 views
Hi All,

On my page, there are 3 Rad Calendars with MultiViewColumns="2" MultiViewRows="6". Above them there are 4 Rad buttons for navigation purpose ( 2 for backward & 2 for forward) . I want to navigate all 3 calendars by clicking on those 4 buttons. In buttons' click event, I am setting focusdate of each calendar but it doesn't work properly. 

1) Is it possible to do this ?
2) If no, then, is it possible that by clicking on one RadCalendar's navigation button, for other 2 calendars navigation events also get fired?
3) Any other way around to do that.


Thanks,
-AA
Richard
Top achievements
Rank 1
 answered on 20 Jan 2012
1 answer
109 views

Hi,

      I am using RadTabStrip in master page and binding the data from XML. I am loosing the selected tab state. Below is my Code. Can you plase help me?

HTML :

<%

@ Master Language="C#" AutoEventWireup="true" CodeFile="DealerFinance.master.cs" Inherits="DealerFinance" %>

<%

@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>

<!

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>Untitled Page</title>

<asp:ContentPlaceHolder id="head" runat="server">

</asp:ContentPlaceHolder>

</

head>

<

body>

<form id="form1" runat="server">

<telerik:RadScriptManager ID="RadScriptManager1" runat="server">

</telerik:RadScriptManager>

<table>

<tr>

<td>

<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" Font-Size="Small"

height="100%" width="100%" BorderColor="Silver">

<telerik:RadTabStrip ID="rtsDealerMenu" runat="server" Skin="Web20"

BorderWidth="1px" >

</telerik:RadTabStrip>

</telerik:RadAjaxPanel>

</td>

</tr>

<tr>

<td>

<asp:ContentPlaceHolder id="DealerFinancePlaceHolder" runat="server">

</asp:ContentPlaceHolder>

</td>

</tr>

</table>

</form>

</

body>

</

html>

Code behind :

protected

void Page_Load(object sender, EventArgs e)

{

if (!Page.IsPostBack)

{

XmlDocument xmlDoc = new XmlDocument();

xmlDoc.Load(Request.MapPath(

"~/App_Data/Menu.xml"));

rtsDealerMenu.SelectedIndex = 0;

rtsDealerMenu.LoadXml(xmlDoc.OuterXml);

}

//Response.Write(rtsDealerMenu.SelectedTab.Text);

}


XML :

<

TabStrip>

<

Tab Text="Home" ID="1" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" >

</

Tab>

<

Tab Text="Dealer" ID="2" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home1.aspx" />

<

Tab Text="ATPS" ID="3" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home2.aspx" />

<

Tab Text="UCC" ID="4" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home3.aspx" />

<

Tab Text="Collections" ID="5" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home4.aspx" />

<

Tab Text="Assets" ID="6" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" />

<

Tab Text="Audit" ID="7" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" />

<

Tab Text="Contact" ID="8" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" />

<

Tab Text="Payments" ID="9" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" />

<

Tab Text="Accounts" ID="10" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" />

<

Tab Text="Admin" ID="11" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" >

<!--

Sub Section for ADMIN Tab Start Here-->

<

Tab Text="Organization" ID="12" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" />

<

Tab Text="Position" ID="13" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" />

<

Tab Text="Responsibility" ID="14" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" />

<

Tab Text="Products" ID="15" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" />

<

Tab Text="Region/District" ID="16" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" />

<

Tab Text="Documents" ID="17" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" />

<

Tab Text="List Of Values" ID="18" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" />

<

Tab Text="Route" ID="19" Tooltip="" NavigateUrl="/DealerFinanceApplication/Home/Home.aspx" />

<!--

Sub Section for ADMIN Tab Ends Here-->

</

Tab>

</

TabStrip>

 

 

 

Sankar
Top achievements
Rank 1
 answered on 20 Jan 2012
10 answers
245 views
In Facebook, when composing an email, the user is shown a dropdown similar to the radComboBox Filtering feature. (see screenshot link below).  When selected, the selected item has a blue wrapper with X to be able to delete a selected item easily.  With the samples I've seen, you can't delete individual items.  It seems that you have to start over especially if you want to delete the very first item you selected. Starting over is not ideal if you already selected a few.  Any idea how to accomplish similar functionality? 

screen shot

Any help would be appreciated.

Mark
Top achievements
Rank 2
 answered on 20 Jan 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?