Telerik Forums
Community Forums Forum
1 answer
43 views
Maybe I missed something, but has the sort by freshness been discontinued? I can't find it, I used that exclusively when searching for items.  Now I find myself reading through countless post trying to find something that's relevant to the version of Telerik that I have or something that's not several years old that I'm generally not concerned with.

Suggestions

1) It would be greatly beneficial to show the original post date, and last post date in the search results, and have the newest sorted first.
2) Add an option to post when they are made to select their Telerik Version. This would be an optional selection when making a post.
3) Allow searches to be done by Telerik Version.







n/a
Telerik team
 answered on 06 Mar 2014
8 answers
53 views
Dear all,

We are looking for components for purpose:
A schedule table consists of:
column=Sunday to Saturday
row=user name
cell=user's schedules/jobs (one cell can have multiple schedules/jobs )

all user's schedules/jobs can be changed by drag and drop, e.g. Alan's job can be drag and drop to Bob then changed to Bob's job.

I have checked Telerik components but I do not know if it has any components suit that purpose. May you give me some suggestions?

Regards,
David
David KeiWai
Top achievements
Rank 1
 answered on 28 Feb 2014
5 answers
87 views
  1. a. Should users "Mark as answer" only posts by Telerik that show how to use an existing feature to address the issue posted? b. Also, include ones that "work around" the lack of a commonly desired feature via "non-tivial" code solutions especially those that also involve Handling Telerik Events or even Overriding Methods (which are usually undocumented)?  c. Also, include ones where Telerik promises or even will just "consider" fixing / adding a feature in a future release (or wait until it has been released and users have verified it to solve the issue)?
  2. For threads where Telerik's suggested solution was verified by a user to not actually solve the issue posted or solve it to the extent and/or in the exact way the user requested in his prior posting(s) (and/or (this probably doesn't happen often) Telerik hasn't posted a reply at all) and a user actually posts the final, verified solution (possibly based on Telerik's solution), there's no way to mark a user's reply as the "answer".
Lyubo
Telerik team
 answered on 26 Feb 2014
0 answers
44 views

Hi Telerik team,

I have tabstrip as follows:

<% Html.Telerik().TabStrip()
.Name("TabStrip")
.Items(tabstrip =>
tabstrip.Add()//To set Extra tab
.Text("4")
.Selected(true))//To get default selection of this tab
.HtmlAttributes(new { Style = "Width:100%;" })
.BindTo(Model.ItemType.Creates(),
(item, navigationData) =>
{
//item.Text = "&nbsp;";
item.ImageUrl = "/" + navigationData.ImageUrl + "/";
item.Text = navigationData.Value;
})
.ClientEvents(events => events
.OnSelect("TabStripSelect")
)
.Render(); %>
 

 Here Can I set 'item.value'(instead of 'item.Text')?

How to get tab selected value and tab selected text and tab selected index of tab on button click?

With regards
Dayana
Dayana Maliyakal
Top achievements
Rank 1
 asked on 25 Feb 2014
1 answer
71 views
Hi Telerik Team,

I have the following menu.I want to set a popup window while clicking menu each menu item(ie:Here menu item Action will be as popup).
How this possible?

With regards
Dayana


<% Html.Telerik().Menu()
            .Name("Menu")        
            .Orientation(MenuOrientation.Horizontal)
            .Items(menu =>
            {
                menu.Add()
                    .ImageUrl("~/Images/Active.gif")
                    .ImageHtmlAttributes(new { style = "padding: 0px 0px 0px 18px;position: absolute;" })
                    .Text("Employee")
                    .HtmlAttributes(new { style = "width: 113;line-height:4;" })
                    .Selected(true)
                    .Items(ItemEmployee =>
                        {
                            ItemEmployee.Add().Text(" Home");                        
                           ItemEmployee.Add().Text("New").Items(ItemNew =>
                                {
                                    ItemNew.Add()
                                        .Text("Test1")                                      
                                         .Action("AddTask?ItemTypeID=1&Operation=Add", "Test")
                                        .ImageUrl("~/Images/tt.gif");
                                    ItemNew.Add()
                                        .Text("Add Feature")
                                         .Action("AddTask?ItemTypeID=2&Operation=Add", "Test")
                                        .ImageUrl("~/Images/tt1.gif");
                                    ItemNew.Add()
                                        .Text("Add Bug")
                                          .Action("AddTask?ItemTypeID=3&Operation=Add", "Test")
                                        .ImageUrl("~/Images/tt3.gif");
                                    ItemNew.Add()
                                        .Text("Add Release")
                                        .Action("AddTask?ItemTypeID=4&Operation=Add", "Test")
                                        .ImageUrl("~/Images/tt4.gif");
                                });
                           
                        });
                       
                menu.Add()
                     .Text("Lists")
                     .HtmlAttributes(new { style = "width: 113;line-height:4;" })
                     .Visible(Convert.ToBoolean(ViewData["IsAuthorized"]))
                     .ImageUrl("~/Images/icon.png")
                     .ImageHtmlAttributes(new { style = "padding: 0px 0px 0px 18px;position: absolute;" });
             
            })
            .Render();
                    %>
Petur Subev
Telerik team
 answered on 24 Feb 2014
1 answer
100 views
Hi,

I have a treeview as following:

View

<script type="text/javascript">
 
function onDataBinding(e) {
var StatusID = $("#rcbProject").data("tComboBox").value();
$.ajax({
url: "/ucProject1/test?StatusID="
+ StatusID,
data: {},
success: function (data) {
var treeview = $("#rtvProject").data("tTreeView");
treeview.bindTo(data);
}
});
}
</script>

<%=Html.Telerik()
.TreeView()
.Name("rtvProject")
.ExpandAll(true)
.ClientEvents(events =>
{
events.OnDataBinding("onDataBinding");
})
%>


controller

public JsonResult test(int StatusID)
{
 
 DataTable dt = new DataTable();
 dt = GetItems(0, StatusID);
 var result = (from DataRow dr in dt.AsEnumerable()
 select new
 {
 Value = dr["ProjectID"],
 Text = dr["ProjectDisplayName"]
 }).ToArray();
 
 â€‹return Json(result, JsonRequestBehavior.AllowGet);
}


It is working.But I really need a hierarchical treeview.I want to add ParentID also other than Value and Text. Based on ParentID tree should  display.How this possible?
Petur Subev
Telerik team
 answered on 19 Feb 2014
0 answers
46 views
RadChart adds a highly requested support for secondary and multiple Y axes. The new feature is useful when the values of the displayed data series vary a lot from one another or different types of data should be presented in one chart. The scale of each added Y axis corresponds to the associated data series and auto adjusts its range.RadTreeView now features its own UI Virtualization that was reused from our RadGridView control. Now you can scroll even faster through large amount of nodes.RadScheduler supports additional  built-in resources - Category, Importance and TimeMarker
sheylasl
Top achievements
Rank 1
 asked on 17 Feb 2014
0 answers
175 views
Dating Software Full Source Code Asp.net with msaccess

full source code of a dating website, asp.net with msaccess for full source code of dating website 
of asp.net with sql server 2005 
visit our website http://www.yamoo.in
lot of source codes for free
amin
Top achievements
Rank 1
 asked on 14 Feb 2014
1 answer
91 views
hi,
 i want to access phone owner details like name,email,address,phone number.how to get full profile using kendo ui.
Nikita Gourme
Top achievements
Rank 1
 answered on 13 Feb 2014
1 answer
55 views
Hello,


http://www.screencast.com/t/Y8dahrUdM6N


Thanks,
Jayesh Goyani
Lora Borisova
Telerik team
 answered on 13 Feb 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?