Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
116 views
Hi Experts,

While using RadTextBox, RadMaskedTextBox and RadNumericTextBox i noticed that whatever width i set in my aspx page for these control was actually getting reset in PageRender event.

This behavior was noticed when i had a case where i need to render additional item with these control and was trying to shrink their width's and noticed that they were reset to empty unit value.
After debugging we noticed that the width set remains in Width property of the control till PagePreRender event.As soon as we enter the PageRender event it gets reset to empty unit.

Would really like to understand  this behavior of telerik control and appreciate some resolution.

Regards,
Aayam Singh
Aayam
Top achievements
Rank 1
 answered on 20 May 2010
1 answer
260 views
(previously posted under a different email address)

We have used a wide variety of Telerik controls successfully and are not so much looking for tips on using them but more on which ones to use!

We are planning to build a single sign-on portal  that allows customers to login once and then have simple access to a number of web applications appropriate to their relationship with the company.  Some of the applications we develop, others are from third parties.  These applications would be available through a collection of buttons on a banner, and they would appear in a separate window below the banner, one at a time.  (Maybe there is a better way?)

At first we considered using the RadTabStrip control as a tool to navigate between these applications but the problem there is that each tab takes you to  a start page, not retaining any "session" information.  For example, suppose I went to Application 2 and navigated from the default page, page 1, to page 2.  I then clicked the tab for Application 1, did some work and then clicked again on Application 2.  I would be back to page 1 and not page 2, where I was working before.

Another option might be simply to create new tabbed browser windows for each application.  However, if we did that we would lose the branded navigation banner unless we were able to implement it in each application.

And then there is the third approach, the one obvious to you, the one we haven't thought of.  Maybe it uses a different control, or maybe it takes a quite different approach.

Looking forward to hearing from you!

David

T. Tsonev
Telerik team
 answered on 20 May 2010
6 answers
217 views
Hello
I am using Radeditor , I want to add watermark in uploaded image
I read this thread http://www.telerik.com/community/forums/aspnet-ajax/editor/watermark-in-radeditor.aspx 
but I didn't get the way to add watermark to my uploaded image using imagemanager.

can somebody help on this ?

Regards

Ahmad Jaber
Top achievements
Rank 1
 answered on 20 May 2010
1 answer
91 views
HI All,
 
  I am using a radtreeview control on a sharepoint master page and binding it to leftnavigation datasource declaratively.
The treeview is binding properly but it nodes are showing  "Microsoft.SharePoint.Publishing.Navigation.PortalHierarchyData".

I tried to give the datatextfield but its also throwing errror. What is the datatextfield for the OOTB sharepoint leftnavigation.


Thanks,
Madhu
Dimitar Milushev
Telerik team
 answered on 20 May 2010
6 answers
196 views
edit-- I should have read more, I will try a binding redirect and report back here.

Is the upgrade path seemless?  We are testing a 2007-->2010 migration.  After installing the new beta 2010 radeditor, the webparts are still broken where previous radeditors had been added to pages.  However, new radeditors can be added to the pages, so it appears to be working fine it is just not compatible with the previous web part?  Please advise!

Web Part Error: A Web Part or Web Form Control on this Page cannot be displayed or imported. The type could not be found or it is not registered as safe.


Stanimir
Telerik team
 answered on 20 May 2010
4 answers
115 views
Hi there

I have a problem and hope you can help me.
I have a page contain 3 combo boxes (let's call them A B C), which fill 2 other combo boxes (D E) using AJAX.
The fill is, of course, on the server.
D and E are contained inside RadAjaxPanel (In order to use ajax)

It's working very good. D and E get the proper data, the ajax works fine.

Now, here is the problem.
When selecting an item in combo D, I want to select the first item of E (first item which contain text like "Select..." and value of empty string).
And also vise versa:
When selecting an item in combo E, I want to select the first item of D.

I tryed to use OnClientSelectIndexChanged, and combo.Items[0].Select(), but this cause stack overflow (I changed D, which changed E, which canged D,,,,, )
Also, The server side selected index changed was not fired. why is that ?

I hope you can help me.
Thanks
Dudu
Yana
Telerik team
 answered on 20 May 2010
1 answer
96 views
Hi
  I use Export to excel for a rad grid.It exports all the columns. I dont want to export  all the columns .Is there any way to filter them and export only required column ?.

Regards
Deepan
Daniel
Telerik team
 answered on 20 May 2010
1 answer
76 views
I am encountering a problem using treeview. I need the root of the tree to have a fixed width, matchin my width of the div I have left for the tree view. The background of it matches the length of the word. For example I need to have a tree of sports meaning:

Football
Germany Bundesliga
England Premier
...
...
..
..


Tennis
ATP
WTA

Basketball
NBA
fff
fadftgfdsa


I need the names of the major sports to have a background behind them that has the width of the treeview. So Soccer, Tennis, Basketball will be more visible in a darker background but the background to be wider than the length of the text.


I want something similar to the panelbar. But I can't use the panelbar because I need to check two or more rows simultaneously and the panel doesn't offer it, but the treeview does.
Nikolay Tsenkov
Telerik team
 answered on 20 May 2010
1 answer
96 views
All,

Do the RadUpload tools, specifically the Multiple File Uploads, work for users authenticated through Forms-based Authentication?  These are our external users and we'd like to enable this feature (which is disabled in out of box SharePoint).


Thanks
Genady Sergeev
Telerik team
 answered on 20 May 2010
11 answers
807 views
Hi, In my parent page i am opening radwindow using following code,

 

RadWindow newwindow = new RadWindow();

 

newwindow.ID =

"RadWindow2";

 

newwindow.NavigateUrl =

"~/ReasonForDisapproval.aspx?elementId=" + elementId + "&stateText=" + stateText + "&contentAvailability=" + contentAvailability;

 

newwindow.VisibleTitlebar =

true;

 

newwindow.Behaviors =

WindowBehaviors.Close;

 

 

newwindow.VisibleOnPageLoad = true;

 

 

 

//add the newly created RadWindow to the RadWindowManager

 

RadWindowManager1.Windows.Add(newwindow);

now in radwindow, after clicking on submit button i want to close the radwindow and refresh the grid from parent page, i am calling javascript function on submit button, 

lblHeading.Text = "<script type='text/javascript'>CloseAndRebind()</" + "script>";

and my javascript function is 

 

function

 

GetRadWindow()

 

{

 

var oWindow = null;

 

 

if (window.radWindow)

 

oWindow = window.RadWindow;

//Will work in Moz in all cases, including clasic dialog

 

 

 

 

 

 

else if (window.frameElement.radWindow)

 

oWindow = window.frameElement.radWindow;

//IE (and Moz as well)

 

 

 

 

 

 

return oWindow;

 

}

 

 

function CloseAndRebind()

 

{

GetRadWindow().BrowserWindow.refreshGrid(

null);

 

GetRadWindow().Close();

}

 

But its not closing radwindow and also not refreshing grid,  its giving javascript error "object doesnt support this property or methods"

Earlier reply will be appreciated.
Thanks in advance
Suvarna

Nikolay Rusev
Telerik team
 answered on 20 May 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?