Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
66 views
Windows Surface RT Tablet a radlistbox doesn't allow selection the same way as on an ios device.

Via IOS, when I select items, it doesn't clear the other selections.  On Windows Surface RT, it does clear the previous selections, similar to a PC.  

Shouldn't the Windows Surface RT experience be the same as IOS?  Not the same as on a PC?

An asp:Listbox responds as I would expect on the Windows Surface RT, previous selections are not cleared with new selections.

Peter
Kate
Telerik team
 answered on 06 Dec 2012
3 answers
297 views
Hello,

I am new to using the telerik controls and need some input from the experts. I need suggestions on making the control go back and forth between the parent window and the opened rad window.

The scenario is as follows.

1. In the Parent window, i have a dropdown list. Based on the selection of the item, in the button click event, a dynamic radWindow is to be opened. -- was able to do it.
2. In the RadWindow, there is a "Save" button which causes some db transcations and the RadWindow is to be closed. -- was able to do it
3. The control should go back into the buttonclick event where the radWindow originated from or someother method in the parent page and continue from there. -- dont know how to come back to an event/method in the parent window.

How do i accomplish this. Is this feasible?. Please explain in detail. Thanks for your help in advance.

-Saleha.
Marin Bratanov
Telerik team
 answered on 06 Dec 2012
1 answer
129 views
Hi,

When the user writes text in the combobox, I need to check the inputted text against entries in the database and if the text is not found, I need to place a red wavy underline under the text as an indicator for the user that the inputted text is not correct. The red wavy underline I need is the exact one that is placed by the spellcheck. I am facing 2 problems:
- I am unable to figure out how to change the font of the text from the code behind. I tried looking through the properties of the combobox.Text but couldn't find anything.. I also tried combobox.underline = true but that did not result in any change on the webpage!
- Is it possible to place a red wavy underline or we can only place a regular straight line? If this is possible, how?

Any help much appreciated.

Thanks,
Samer
Kalina
Telerik team
 answered on 06 Dec 2012
6 answers
87 views
Hi, 

I have 2 questions regarding the grid

1. Same pager for master and detail
As you can see in attached picture I obtain 80 items for master table, which is correct behaviour and that pager looks correct... But when I click on the row, detail table is generated and there is the same pager for 80 items even if I have there only 4 rows obtained and displayed...  

I get data through "NeedDataSource"...

2. Display pager all the time
How can I display pager under any circumstances for the master table ? I have grid with page size equal to 10, but 8 rows are obtained and no pager is displayed. But I need it to display it because user may want sometimes change the pagesize. Is this any way how it can be done ?

Thanks for the reply...
FISCAL
Top achievements
Rank 1
 answered on 06 Dec 2012
3 answers
213 views
Hello,

Here is my setup:

I have a masterpage with a RadAjaxManager on it, and a content page with a RadAjaxManagerProxy on it.

The content page has 2 asp:panels (a master/detail type page) , the detail panel is hidden by default (and contains multiple rad editors)

Selecting a row from panel 1 will show panel 2 using the RadAjaxManagerProxy AjaxSettings. 

Panel 2 has some textboxes, and rad editors, and a save  and cancel  button. I am able to save no problem everything works. 

However when using MaxHtmlLength to validate the rad editors, clicking save will show the default Telerik javascript alert() and stop the page from posting, but it doesn't stop the loading panel from displaying. It just spins and wont stop until I refresh or close or whatever. It does not actually post to the server, it just seems to be in limbo land. 

Any suggestions? 

Thanks!
Leslie Huszar
Top achievements
Rank 1
 answered on 06 Dec 2012
1 answer
105 views
Is there any way to use the SendEmail control without specifying the SMTPServer, UserName or Password in the EmailSettings? We are using a service to send all of our emails that only exposes a Send method that takes in a System.Net.Mail.MailMessage. Unfortunately the SMTP server credentials are not exposed to the application that is using the share control.

Thanks,
Carl
Marin Bratanov
Telerik team
 answered on 06 Dec 2012
4 answers
120 views
Hi

Is it possible to have the secondary Y axis on the right hand side of the Chart as in the way the RadChart control works? 

I like the way the HTML Chart renders, but my customer does not like the second Y axis on the left also.

Regards
Mark
Danail Vasilev
Telerik team
 answered on 06 Dec 2012
2 answers
101 views
When I press 'x' to clean text area in ComboBox, file event parameter RadComboBoxItemsRequestedEventArgs has property Text not empty but with last value. Why?

Thanks.
Pls. Check Page Method on http://demos.telerik.com/aspnet-ajax/combobox/examples/populatingwithdata/autocompletesql/defaultcs.aspx 
Kalina
Telerik team
 answered on 06 Dec 2012
3 answers
139 views
Hi,

I am using RadEditor in our grid for each row and column but in edit mode (Multi Edit- where all RadEditors are in edit mode) I am having problem in getting the toolbar for all the RadEditors (when using ToolBarMode as ShowOnFocus and ToolBarProviderId same for all the RadEditor Controls for better Performance).

Note: Edit all the Rows and Columns at the same time causes this problem.

I am dynamically generating the RadEditors using the below code:

private DerivedRadEditor CreateRadEditor(bool isPreviewMode)
  
{
  
if (this.radMemo == null)
  
{
  
this.radMemo = new DerivedRadEditor();
  
//Translation 
  
this.radMemo.Language = Thread.CurrentThread.CurrentUICulture.Name;
  
this.radMemo.ID = this.ID + "rm";
  
this.radMemo.ToolbarMode = EditorToolbarMode.ShowOnFocus;
  
this.radMemo.OnClientCommandExecuting = "OnClientCommandExecuting";
  
this.radMemo.EnableViewState = false;
  
//this.radMemo.Skin = "WebBlue";
  
this.radMemo.StripFormattingOptions = EditorStripFormattingOptions.NoneSupressCleanMessage;
  
///Setting default style for RadEditor Content Area
  
  
radMemo.ContentAreaCssFile = "~/client/CSS/EditorContentAreaStyles.css";
  
  
if (Page.Items["FirstRadEditor"] == null)
  
{
  
Page.Items["FirstRadEditor"] = radMemo;
  
}
  
else
  
{
  
radMemo.ToolProviderID = ((DerivedRadEditor)Page.Items["FirstRadEditor"]).ID;
  
}
  
if (isPreviewMode)
  
{
  
this.radMemo.EditModes = EditModes.Preview;
  
radMemo.ToolsFile = "~/client/XML/RadEditorTools/MemoPreviewTools.xml";
  
}
  
else
  
{
  
this.radMemo.EditModes = EditModes.Design;
  
radMemo.ToolsFile = "~/client/XML/RadEditorTools/MemoDefaultTools.xml";
  
}
  
// Removed reuse the tools from another RadEditor code as it was not working with Floating mode
  
//Adding Paste as Cross reference HTML
  
//EditorTool pastCrossReference = new EditorTool("PasteCrossReference");
  
//this.radMemo.ContextMenus.FindByTagName("*").Tools.Add(pastCrossReference);
  
 
  
this.Controls.Add(radMemo);
  
HiddenField hdnRADEditorAvailable = (HiddenField)this.Page.FindControl("hdnIsRADEditorAvailable");
  
if (hdnRADEditorAvailable != null && hdnRADEditorAvailable.Value != "1")
  
{
  
hdnRADEditorAvailable.Value = "1";
  
}
  
}
  
return this.radMemo;
  
}

Please suggest some solution.

Thanks
Ankur
Rumen
Telerik team
 answered on 06 Dec 2012
1 answer
122 views
HI,
In the insertcommand, i have the following code:

GridEditableItem item = e.Item as GridEditableItem;
           Hashtable values = new Hashtable();
            item.ExtractValues(values);            
           Session["GridValues"] = values;
           RadGrid1.DataBind();


I am trying to do a soft save of the grid items. When the first row is added it is set in the session. when the 2nd row is added, only the 2nd row values are available in the session.

How to add items in session?

Thanks
Antonio Stoilkov
Telerik team
 answered on 06 Dec 2012
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?