Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
61 views
hi
goodmorning our support team

this is mohan from virtify.com
we are using telerik controls in our project since 2005 with licensed version and
assembly is RadEditor.Net2.dll -- version number is 7.3.1.0
we have on problem while adding links on to the either combination of text and sub/sup scripts   or sub/sup scripts

note : even though current version is also having same problem

for example

a) Document 123  will be showing as  Document 123

b) Document 123  will be showing as  Document 123

c) 123  will be showing as  123

d) 123  will be showing as  123


we are using like as

LabelEditor.UpdateSection(sectionid.value, encodeURIComponent(s), rtvSelectedNode.Attributes[

"lineage"])

 

 

s variable contains sub/sup script tags but  encodeURIComponent(s) eliminating sub/sup script tags

please resolve this issue asap

thanks in iadvance

mohan
Rumen
Telerik team
 answered on 21 Apr 2010
1 answer
120 views
hi
good morning my team

this is mohan, from  virtify.com
we have a problem with telrik editor which is older version that we have been using (RadEditor.Net2.dll -- version no:7.3.1.0)
ie. while i try to add links on superscripts / subscripts , then format will be changed
for example. try to add link to this whole text    "mohan 123"  or  "123"     then result will be mohan123 or 123


thanks  for the solutions providing  in  advance

mohan
mohan143.theeda@gmail.com

Rumen
Telerik team
 answered on 21 Apr 2010
1 answer
159 views

Hello,

I have a page with two web user control and one asp:button to trigger the ajax request. Both web user control only include a asp:button. The only difference between the two web user control is on the page_load function. One have a System.Threading.Thread.Sleep(1000) and the other one a System.Threading.Thread.Sleep(8000).  With the RadAjaxManager, while launching the ajax request with my trigger button, what I was expecting was that the first of the web user control finished is request before the second one. (The RadAjaxLoading panel on the first web user control dissapear before the second one), Therefore, the behavior was that the first web user control won't be available until the second one has finished is request. Both RadAjaxLoadingPanel of each web user control will disapear at the same time. What I would expect is that the first web user control became available as soon as it finished to load himself.

So I try to put each web user control in is own RadAjaxPanel. If I use their respective button to update is own content. While pressing the button of the first web user control, is ajax request is launch and I can see the RadAjaxLoadingPanel progress. Therefore, during is progress, if i tried to launch the second one, nothing happend. It will wait until the first one have finished. What I would expect is that the second update is launch as soon as I press his trigger button, even if there is already a ajax update in progress. I do not have to wait after the previous request is done to be able to launch the second one.

So what I would like to know is how to use your Ajax Controls so I can have multiple web user control that can be updated independently each to the other..


Thanks,
Maria Ilieva
Telerik team
 answered on 21 Apr 2010
3 answers
97 views
Hi There

I'm afraid i'm very new to the wole .net & AJAX thing,  Sadly i know less than nothing.  I have been trying to crate a data bound version of the Demo example (see Link below)  Essentualy, all i'm trying to do is create data entry form which then updates an Ajax Grid without having to do a full page refreh.

http://demos.telerik.com/aspnet-ajax/ajax/examples/common/formvalues/defaultcs.aspx

What i really nead is a sample project with a database that i can follow and see how its done..  does anyone have sample project or know of a tutorial i can follow?

Thanks

Stu
Iana Tsolova
Telerik team
 answered on 21 Apr 2010
1 answer
145 views
Hello guys.

I have a combobox with load on demand in a gridtemplatecolumn. For new registries my combo works fine, but, for update I have a problem. In the itemDataBound event (edit mode), I bind the combo with a value and a text (only 1 item), and, when I start the combo's ItemsRequested event, my combo have at the finish, a duplicated item.

I tryed do remove the item in ItemsRequested event,

if (combo.Count == 1)  
   {  
     combo.Items[0].Remove();  
     combo.Text = "";  
     combo.ClearSelection();  
   }          


or, not insert the item that already exist, but I have no sucess.

if (combo.Items.Count > 0) 
            {   
                if ( itemToInsert != combo.Items[0].Value) 
                { 
                    combo.Add(new RadComboBoxItem(TextToInsert, valueToInsert));     
                } 
            } 

What is the best practice for it?

Thanks in advance.

Regards.
Veselin Vasilev
Telerik team
 answered on 21 Apr 2010
3 answers
98 views
Hi,
  I am using pager template(numeric pages) for the self refrential grid. It being displayed twice. When ever you expand node of self grid, it's displaying pager template again :(

It's a blocker, do let me  know if I get a work around.


I want pager template only for the grid and not the rows inside the grid.
Pavlina
Telerik team
 answered on 21 Apr 2010
4 answers
128 views
Hi,

I am using Google Map API.
When i use spliter with the MAP at that time it is not render.

Regards,
Parthesh
Tsvetie
Telerik team
 answered on 21 Apr 2010
1 answer
82 views
Hello,

We're curious if there is a way to utilize the great ConvertToXhtml filter functionality server-side.  

We have some database fields that allow HTML and we're in the process of developing reports that then return the HTML to the user in the form of a Word document.  The document generator we use to process and serve the documents only allows Xhtml compliant html and is very strict.  Problem is, before we implemented Telerik's ASP.NET AJAX RadEditor we allowed (I know it's very bad practice) bits of malformed HTML into the database.  We've since added the ConvertToXhtml filter to the editors.

Do you know of a way to get access to the filter functionality server-side?

I found a post a while back that had some javascript that would achieve what we'd like but we're between a rock and a hard place trying to call back to client-side, perform the filter, then return to the server.  Here is the code I came across:

    <script type="text/javascript"
        function SetContent(content) 
        { 
            var editor = $find("reContent"); 
            editor.set_html(content); 
        } 
         
        function GetContent() 
        { 
            var editor = $find("reContent"); 
            editor.get_html(true); 
        } 
    </script> 


Any help?

Thanks in advance!
Allen
Rumen
Telerik team
 answered on 21 Apr 2010
2 answers
147 views
Hi
     Is there any control which is equivalent to Ajax tool kit AlwaysVisibleControl (http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/AlwaysVisibleControl/AlwaysVisibleControl.aspx)in Telerik control. My requirement is to place a set of control in my form which is always visible mode(not depend on the form scroll bars).
Sree
Top achievements
Rank 1
 answered on 21 Apr 2010
3 answers
496 views
Hi,
    I have a radgrid with command item template.

 

This template has Add Icon and Delete Icon.
I want to make Add icon to be disabled/invisible in certain conditions.
How can we achieve this from code-behind?


Thanks.

Shinu
Top achievements
Rank 2
 answered on 21 Apr 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?