Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
95 views
Dear Telerik,
                   I need your suggetion in AjaxSetting for my Tabs in NestedViewGrid. I am having parent grid and it is also having child grids in 2 tabs. Based on the selection of each tab the respective child grid has to be loaded. So that i set PostBack property of Tab to true. I feel that the postback time is taking too much for tab selection to load the grid. So that i decided to put the Tab control  inside the Ajaxsettings, so that we can avoid the postback by invoking thorough Ajax.
I used the below code for that; So please refer the same and correct me what mistaken i made so that I could be avoid postback time.
 <telerik:RadAjaxLoadingPanel runat="server" ID="RadAjaxLoadingPanel1" Skin="Vista" />   
            <telerik:RadAjaxManager ID="radAjaxManager1" runat="server" ClientEvents-OnRequestStart="requestStart" 
                OnAjaxSettingCreating="radAjaxManager_AjaxSettingCreating">  
                <AjaxSettings> 
                    <telerik:AjaxSetting AjaxControlID="ParentGrid">  
                        <UpdatedControls>                             
                            <telerik:AjaxUpdatedControl ControlID="ParentGrid" LoadingPanelID="RadAjaxLoadingPanel1" />   
                        </UpdatedControls>                          
                    </telerik:AjaxSetting> 
                     <telerik:AjaxSetting AjaxControlID="TabStip1">                       
                        <UpdatedControls>                                                
                            <telerik:AjaxUpdatedControl ControlID="TabStip1" /> 
                            <telerik:AjaxUpdatedControl ControlID="Multipage1" /> 
                        </UpdatedControls> 
                    </telerik:AjaxSetting> 
                    <telerik:AjaxSetting AjaxControlID="Multipage1">  
                        <UpdatedControls>                         
                            <telerik:AjaxUpdatedControl ControlID="TabStip1" /> 
                            <telerik:AjaxUpdatedControl ControlID="Multipage1" /> 
                        </UpdatedControls> 
                    </telerik:AjaxSetting>                                          
                </AjaxSettings>                                  
            </telerik:RadAjaxManager> 

Regards,
Chandran
Veli
Telerik team
 answered on 11 May 2010
2 answers
89 views
Would like to "write" on a doc created by RadEditor.

Can I do this?

Thanks.
Kevin
Top achievements
Rank 1
 answered on 11 May 2010
1 answer
138 views
Hello,

Presently I have several HTML drop-downs (<select> elements) that are populated via client-side JavaScript. I would like to convert these to Rad ComboBox controls in order to take advantage of the multi-column feature, in which I will show three columns (Category name, total sales, and market share). I was able to get a "server-side" version of a multi-column ComboBox running with the data desired.

I added "total sales" and "market share" values to the client-side objects I use for populating, and now I need to load these values dynamically via JavaScript into the multi-column RadCombo box, but I cannot determine how to do this. I tried the example where I create a comboItem using "new Telerik.Web.UI.RadComboBoxItem()" and call "set_text", but this only adds a single value to the ComboBox's drop-down area, and its off to the right side (not in a column).

Please advise, thanks.

G
Simon
Telerik team
 answered on 11 May 2010
9 answers
174 views

Dear Telerik,

                  Iused  to  hide certain columns  during runtime and  undhide  the columns withHeaderContextMenu. Its all  working  fine. But when  I  unhide the column which ishide in during runtime the width  of  the  other  columns  not  looking  fine.

My  all  of the  columns  widths  are  specified in  percentage  as  well as MasterTableview width in 100%

I used to hide the columns as below at Page_Load event

<ClientSettings AllowDragToGroup="true" AllowColumnHide="true"

  RadGrid1.MasterTableView.GetColumn("Col1").Display = false
            RadGrid1.MasterTableView.GetColumn("Col2").Display = false

I refered the following link to apply the scenario.

http://www.telerik.com/community/forums/aspnet/grid/hiding-columns.aspx

Regards,

John

Daniel
Telerik team
 answered on 11 May 2010
1 answer
98 views
Hello,

I am trying to convert to a web app, and one of my forms contains a RadComboBox.  I am getting the following error:

Generation of Designer file failed:
Telerik.Web.UI.RadComboBoxItemCollection must have items of type Telerik.Web.UI.RadComboBoxItem.  telerik:RadComboBoxItem is of type Telerik.Web.UI.RadCombBoxItem.

I have the Telerik.Web.UI dll and we as the Telerik.Web.Design dll listed as References.

Help!!!!

Thanks!
Simon
Telerik team
 answered on 11 May 2010
1 answer
95 views
I have a combo box in a td that when I ad a class that adds padding of 10px to it renders the combo box almost unusual as it seems to add the padding to the combo box height.

Any ideas?
Yana
Telerik team
 answered on 11 May 2010
1 answer
178 views
I would like to customize the Rad Editor to allow only certain HTML tags.
In particular, those tags supported by Adobe Flash player, as mentioned in this web page:

Examples:
As of now, when the user makes a text bold, the HTML code that is produced by the editor has <strong> tag; instead of this tag, the editor should produce, <b> tag in the HTML code, whenever the user clicks the button B in the editor.

Similarly, instead of <em>, the editor should produce <i> in the HTML code, whenever the user clicks the I button.
Instead of <span style="text-decoration: underline;">Underlined Text</span>, it should produce <u>Underlined Text</u>.
In the same way, all the tags mentioned in the above web page - and only those tags - should be supported by the custom Rad Editor.

How do I customize the Editor in this way?

Thanks in advance. I appreciate your help in this.
Regards!
Rumen
Telerik team
 answered on 11 May 2010
1 answer
154 views
Hi,

I have a requirement to show a 2 pie charts side by side with common legend. 1 chart with actual values and aother one with %. for both Charts source is same(DataSet). Is it possible to display 2 charts? If yes, please provide reference. For sample, I have attached snapshot. This is urgent requirement and any help would be greatly appreciated.

Thanks,
Mulagundla
Ves
Telerik team
 answered on 11 May 2010
3 answers
103 views
hi All

in my page i am using treeview and tabstrip control.in treeview employee is displaying in child node and branch is displaying in parent Node. when i am selecting child node every thing is working properly but while selecting parent node then it's throwing nullrefrence Exception.
and one more thing i am using Telerik latest control i.e. 2010.
    previously it was working with 2009. but now it's throwing Exception
so how to get parent Node is seleted or not in Treeview.

my code Is:-

 protected void treeOppGroups_NodeClick(object o, RadTreeNodeEventArgs e)
    {
        //if (treeOppGroups.SelectedNode.ParentNode.Selected)
       if(e.Node.ParentNode.Selected)
        {
            DoReadOnly();
        }
        else
        {
            DoReadOnlyFalse();
       }
  }


Please Help Meeeeeeeeeeeeeeeeee......
Nikolay Tsenkov
Telerik team
 answered on 11 May 2010
1 answer
93 views
Good Day All

Let me explain my Previous look of a Viewer before i used Telerik. this is a Custom built interface , built with normal asp.net and a lot of css at runtime. I am changing to Telerik Scheduler and its doing nice things for me.

I am trying to customize the Viewer. My Previous Viewer was like this

Screen-shot of the Old Viewer

as you can see the above viewer it has 2 Slots that i defined like this in the Database

Screen-Shot of Stots Data in the Database

By the Look at the Old Viewer it combined the DayView and the Month View. Now i am using Telerik Schedular that looks like this when all appointments are binded

Screen-Shot of Telerik Schedular

Now as you can see this one too, it different views, but the Currently displayed is a Month-view. When a user Clicks on the more it brings it in a Day View. Now i want to implement the Slot  style as depicted in the Oldviewer Screenshot.  I want to have Sessions and Days at the Top as depicted in the following Screen-shot

Screen-Shot of what i want

As you can see the 2nd Period. if an activity of subject takes double period it should be displayed as that and the time should be removed there, there should be Sessions. if i put it in simple english. On sunday 7 i have Seminar as period 1 and Labour Law as period 2 and Period 3 because it is a double period and on the 4th Period i have Advanced Constitutional Law

How can i achieve this,

Thank you


Chip
Top achievements
Rank 1
 answered on 11 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?