Telerik Forums
Community Forums Forum
2 answers
105 views
Hello,

I need to find someone who knows how to create a template for the appointment popup on the scheduler. I need to include a few additional controls but the main ones are two combo boxes that are databind. The first combo is a company. When that combo is selected then I need to rebind the data for the second combo using the value from the company combo. The second is a list of contacts for the selected company.

I need someone who can do this for me in VB.NET. If interested please reply and I can give the specifics to get your quote.

Thanks,
Warren
Naveen
Top achievements
Rank 1
 answered on 23 Jul 2014
1 answer
105 views
Hi,

with the "new" (ok they exist for some times now) forums the editor is "hard to use" with paragraphs and blank lines.

I noticed this months ago - but last week I tried to reply to a post via my WindowsPhone - this was a nightmare!!!
In general it is the same behavior as with the desktop version - but much harder du to some "special effects".

Desktop:
I enter text here and add some blank lines.




Now I'm almost at the bottom of the page.
Again a paragraph and a blank line - now
I hit enter - all what happens is that the cursor goes away


after typing a letter the editor scrolls.


In WindowsPhone:
Pressing return moves the current Line down - cursor on first position.
Not allways but sometimes (mostly).

Just try to answer this post using a windows phone 8.x device to see what I mean.
I really often use my phone to post in forums - but here it is really bitter.

Manfred
Kristina
Telerik team
 answered on 14 Jul 2014
6 answers
92 views
Hi,

when I go (for an example) to
http://www.telerik.com/community/forums/wpf/gridview.aspx
The bread crumb shows
Home/Community & Support/Developer Productivity Tools Forums/WPF>GridView
This is correct.
When I open an article here it shows
Home/Community & Support/Developer Productivity Tools Forums/WPF>GridView>Known Issues and Breaking Changes - RadGridView
Also OK - and fine so far since I can navigate easily back to the GridView section.

BUT - after a search in the WPF GridView I get:
Home/Community & Support/Developer Productivity Tools Forums/Search

I can see -- Results for yyyy in WPF : GridView

But there is no link back to the WF/GridView forum.
So if I find nothing and want to go back I have to do it all the way from start.
OK, there is "Back" -- but this is not so fine after going through several pages in search result - or doing multiple searches.

"You" know where the search started (is done fore) - could you please (if the bread crumb can't be changed) provide a linke back to where the search started?

Thank you 
Manfred
Valentine
Telerik team
 answered on 14 Jul 2014
2 answers
113 views
We are looking for some java UI expertise, specifically using the Telerik Rad controls, to take our application to the next level.  It is written in C#.NET and uses a SQL Server backend.  We actually have decades of experience developing applications for business, science, government, and so forth.  But we have not ventured into the high-polish UI area of web apps until now.  So what you will find in our project is a decent database app with most transactions “stubbed out,” some of the Telerik controls incorporated, some java tricks enabled.

I see our relationship unfolding in the following way: 
  1. Get the current application to “Minimum Viable Product” or MVP level.  Finish the UI paradigm and visual styles.  Polish up a couple of “showcase forms” so we can push that technology out to the rest of the application and get it finished.  I will probably need help with that “push it out” part too.  The goal of the MVP is to get our “alpha users” using it, and loving it.  This will also include some Telerik Reporting support, if you know that system.
  2. Create MVP mobile feature sets.
  3. Create version 2, iron-hard tested and ready for deployment to new users.

There are a number of other features of this system that are being developed.  We will discuss them together later as well.  But first we need to focus on the above UI basics, and make it brain-dead user-friendly.  In future, we will be developing an API, integrating with many third-party applications, creating lots of pre-defined reports, and adding new application features.  If our first projects work out well, of course we will work together on many of those as well.

All developers must be within the United States, and must be bound to our non-disclosure and service agreements.

If you will forward me your rate structure and contact info, I will call you to begin work on the details.

Cheers,
Emerson "Chip" Swan
Organization Core, Inc.
Vikram
Top achievements
Rank 1
 answered on 08 Jul 2014
0 answers
85 views
Hi, 

I am using kendo telerik controls(Trial version) with asp .net MVC 4.
I have some field on a cshtml page  like  first name, last name and salary with a Telerik Kendo button (save ).
I want to save that data into data base. how can I achieve this functionality using kendo telerik controls.
Please suggest.

Thanks in advance,

Regards,
Ashish
Ashish
Top achievements
Rank 1
 asked on 07 Jul 2014
1 answer
53 views
Do we have a way to clear the date picker and have the kendo popup show current date / month ???

Im using kendo with MVVM.
Kiril Nikolov
Telerik team
 answered on 07 Jul 2014
0 answers
117 views
When using the Kendo DropDownList, is there a way to parse the value and text fields from a single datasource field?  Possibly using templates (or is the template for display only)?


Html.Kendo().DropDownList()
   .AutoBind(false)
   .Name("cboSearchCriteria")
   .Template("#:Value#|#:Key#")
   .DataTextField("Value")
   .DataValueField("Key")
   .DataSource(ds => ds.Read(read => read.Action("FilterSearchResults", "User")))   
       )


DataSource is receiving a list of strings back from "FilterSearchResults".

"AAAAAA|1"
"BBBBBB|2"
"CCCCC|3"

littleGreenDude
Top achievements
Rank 1
 asked on 23 Jun 2014
0 answers
68 views
Hi,

How to refresh kendo mvc grid on checkbox checked event

I have used the following code.But it is not working

 $(document).ready(function () {
        $("#chkClosedItems").click(function () {
           
            read:( {

                dataType: "json",

                url: "/ucTest/Test?ProjectItemID="
                              + 1
                             + "&ProjectID=" + 1
                               + "&isChkClosed=" + isChkClosed,

                    cache: false

            })

           
            $("#grid").data("kendoGrid").dataSource.read();

            
        });
Dayana Maliyakal
Top achievements
Rank 1
 asked on 11 Jun 2014
3 answers
95 views
Hello Telerik Team,

Window is displayed on button click.But it is not possible with a single click.Window will be displayed only after five or six times page refreshing.
How the window will display with in a single click?

Please check the below code:

​  <input type="image" src="../../Images/relateditem.gif" title="Relate Items" id="imgNonRelatedItems"
                            onclick="return testWindow();" />         

 function testWindow() {
     
        var ProjectID = document.getElementById('hfProjectID').value;
    
        var window = $("#RelateItemWindow").data("kendoWindow");        window.refresh({
            url: '/RelateItemMapping/RelateItemMapping/',
            data: { ProjectID: ProjectID }        });
    
        window.open().center();
        window.title("Add Related Items");
       
    }   

@(Html.Kendo().Window()
.Name("RelateItemWindow")
//To set reload,max,close,Minimize button
.Actions(actions =>
actions.Close().Maximize().Minimize().Refresh()
)
.Title("Add Related Items")
.Visible(false)
.Modal(true)
.Width(800)
.Height(530)            
        )


With regards
Dayana
Dimo
Telerik team
 answered on 06 Jun 2014
5 answers
155 views
Hi Telrik Team,

I have a following function:

function RelateItemsOpenWindow() {        
        
        var ProjectID = document.getElementById('hfProjectID').value;        
        var window = $("#RelateItemWindow").data("kendoWindow");

            window.refresh({
             url: '/test1/Index/',
          data: { ProjectID: ProjectID }

                 });
               
        window.open().center();
        window.title("Add Related Items");

}

<input type="image" title="Relate Items" id="imgNonRelatedItems"
onclick="return RelateItemsOpenWindow(); return false;" />

test1 controller contains a grid

Grid is displayed in the first time.But grid paging is not working.
How to resolve this problem?

With regards
Dayana
Dimo
Telerik team
 answered on 30 May 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?