Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
78 views
¿It's posible add RadEditor control inside of MVC View?
Rumen
Telerik team
 answered on 10 Apr 2014
6 answers
79 views
Just dropped in the 2014.1.403 version and everything seems to be working fine EXCEPT for the ComboBox: in IE8, the ComboBox's icon is offset about halfway down. I've attached a screencap so you can see what I'm talking about. We were previously running 2013.2.717.

It seems to be fine in firefox and chrome, haven't gotten a chance to try other versions of IE yet. Also, if I visit the ComboBox demo pages in IE8, those seem to be fine too.

Any thoughts?
Magdalena
Telerik team
 answered on 10 Apr 2014
6 answers
110 views
Is there anyway I can get the id of the newly inserted record on the AppointmentInsert event. I have a sqldatasource and looking to send an email once a new appointment has been created.

Thanks
Genady Sergeev
Telerik team
 answered on 10 Apr 2014
3 answers
177 views
We are currently researching the possibility to use the RadOrgChart to display the organization chart of our company, however i didn't find any functionality that we can use to display the Replacement of an employee, the assistant of the employee, and if we can use the chart to display several Roots. for example by head of departments.


Thank you,
Mira
Plamen
Telerik team
 answered on 10 Apr 2014
1 answer
174 views
Sir,
I just started to develop asp.net web application using Rad Controls.In a web page i added a radtoolbar,radsplitter radpane radslidingzone,radsliding pane as shown in attached image.I have some doubts about the controls.And i explained my questions in the attached image.
Am a beginer in rad controls.
Please let me out of this.
Vessy
Telerik team
 answered on 10 Apr 2014
1 answer
236 views
Hi 

I have a situation where users are allowed to paste HTML content into the Rad Editor and in particular well formatted HTML tables with in line CSS and all.

Now all this HTML data should be shown in an SSRS report but the HTML tables don;t seem to be rendering upon some research I realized that SSRS supports only a  subset of HTML tags. A suggested solution is to save the HTML table as an image and show it as an image on the SSRS report. 

Is there a way where in we can convert the HTML content from the Rad Editor to Image and store it in the DB and render as is on the SSRS report ?

Thanks
Ianko
Telerik team
 answered on 10 Apr 2014
1 answer
107 views
Good afternoon,
I downloaded a latest release of Telerik Q1 14.Now I am experiencing a problelm on selectedindexchanged event.
I have RadGrid with a column.A few column I made visible = false:
<telerik:GridBoundColumn HeaderText="Title" DataField="POSITION" UniqueName="POSITION" ReadOnly="True"  >
                             
 </telerik:GridBoundColumn>

<telerik:GridBoundColumn DataField="TITLE" UniqueName="TITLE" Visible="false" >
 </telerik:GridBoundColumn>
  <telerik:GridBoundColumn HeaderText="Location" DataField="LOC" UniqueName="LOC" ReadOnly="True" >
                                       
  </telerik:GridBoundColumn>
  <telerik:GridBoundColumn DataField="MONTH" UniqueName="MONTH" Visible="false"  >
  </telerik:GridBoundColumn>

When I select row SelectedIndexChanged event file and I try to retrieve a value from the columns including invisible like this:
string pri = SummaryGrid.SelectedItems[0].Cells[2].Text;
string month = SummaryGrid.SelectedItems[0].Cells[5].Text;

but all visible columns works fine however invisible column like "MONTH" getting value "&nbsp;" instead of data.

I did not have this issue with the oldest release.

Please help me.

Thanks so much.
 
Eyup
Telerik team
 answered on 10 Apr 2014
3 answers
360 views
I've implemented Google-like filtering in my RadGrid FilterTemplate column similar to how its described here.  It works great except when you make a selection the value doesn't stay present in the RadComboBox.  Is there a way to accomplish this?  I tried using sender.set_text() but it doesn't seem to work.


<telerik:GridBoundColumn DataField="last_name" DataType="System.String" HeaderText="Last Name" SortExpression="last_name"
    UniqueName="last_name" ShowFilterIcon="True" AutoPostBackOnFilter="true" CurrentFilterFunction="Contains">
    <FilterTemplate>
        <telerik:RadComboBox runat="server" ID="rcblast" DataTextField="last_name" DataValueField="last_name" EnableEmbeddedSkins="False" Skin="2015"
            Width="100px" EnableLoadOnDemand="True" MarkFirstMatch="True" ShowToggleImage="False" OnClientDropDownOpening="lastName_ClientDropDownOpening"
            OnClientSelectedIndexChanged="lastName_ClientSelectedIndexChanged" OnClientItemsRequesting="lastName_ItemsRequested"
            OnItemsRequested="rcblast_ItemsRequested">
        </telerik:RadComboBox>
        <telerik:RadScriptBlock ID="RadScriptBlock2" runat="server">
            <script type="text/javascript">
                function lastName_ClientSelectedIndexChanged(sender, args) {
                    $find("<%= rgTraining.ClientID %>").get_masterTableView().filter("last_name", args.get_item().get_text(), "StartsWith");
                     
                    // doesn't seem to work
                    sender.set_text(args.get_item().get_text());
                }
                function lastName_ItemsRequested(sender, args) {
                    if (args.get_text().length < 3)
                        args.set_cancel(true);
                    else
                        args.set_cancel(false);
                }
                function lastName_ClientDropDownOpening(sender, args) {
                    var comboText = sender.get_text();
                    if (comboText.length < 3) {                                   
                        args.set_cancel(true);
                    }
                }                                                                                    
            </script>
        </telerik:RadScriptBlock>
    </FilterTemplate>                       
 
    <ItemStyle VerticalAlign="Top" />
    <HeaderStyle HorizontalAlign="Left" VerticalAlign="Bottom" Font-Bold="True" Font-Underline="True" />                               
</telerik:GridBoundColumn>




Princy
Top achievements
Rank 2
 answered on 10 Apr 2014
1 answer
199 views
Good Afternoon,
in my aspx page I have RadDatePicker control.When I click on it calendar popup and then I click the title area  of the title bar to choose different month and year  popup for some reason instead of appearing next to calendar it is appear on the top of the screen where I can barely see it.

Please help me.

Thanks so much.
Princy
Top achievements
Rank 2
 answered on 10 Apr 2014
2 answers
174 views
Hi Please Help me to Convert bellow Code Snippet to LINQ

foreach (RadComboBoxItem item in rdComboNames.Items)
                {
 
                    CheckBox chk = (CheckBox)item.FindControl("chk1");
                    if (i == 0)
                    {
                        checkedText += "Names:";
                    }
                    else if (chk.Checked)
                    {
                        checkedText += item.Text + ", ";
                    }
                    i++;
                }
Deekshith
Top achievements
Rank 1
 answered on 10 Apr 2014
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?