Resources from webinar Kendo UI Mobile Tips and Tricks

On Feb 13 2014 we conducted the webinar on “Kendo UI Mobile Tips and Tricks”. This blog post will provide you some of the resources from the webinar like Slide Deck, Video recording of the webinar.

Kendo UI Mobile

Kendo UI Mobile helps you to build Cross Platform Mobile or Hybrid Applications with pure JavaScript and HTML5.

Learn more about Kendo UI Mobile here

Slide Deck

Here is the slide deck from the webinar

 

 

Video

As with every webinar, we have recorded this one too. Here is the video recording of the webinar for your leisure viewing

 

 

Thanks for attending webinar.

Telerik India @ Devcon Kochi

Kerala Microsoft User Group or KMUG as we call it is one of the active User Groups in India concentrating on Microsoft Technologies. KMUG is lead by some of the enthusiastic professionals and good friends of mine. Every year they conduct a day long technology event called “DEVCON” short for Developer Conference. This year too DEVCON will be held on Feb 15 2014.

image

I am delighted to say that I will be representing Telerik in this developer conference. I will be presenting the following sessions at DevCon:

Talk: Develop ASP.NET MVC Applications faster with Kendo UI
Time: 10:15AM

This talk will be primarily to show how you can develop your ASP.NET MVC applications faster with the help of Kendo UI Wrappers for ASP.NET MVC. Kendo UI Wrappers bring in the concept of controls to your MVC development environment. If you are working on MVC technology do come attend this talk and see the wow factor we bring in with Kendo UI.

Hands on Lab: Hybrid Mobile Application Development with Kendo UI
Time: 01:45PM

Kendo UI Mobile lets you build Cross Platform, Adaptive Rendering Hybrid Mobile Application which can be packaged and run on any Mobile OS platform. Kendo UI Mobile will provide you with the mobile and tablet controls and you just need to have web skills to become a mobile developer. So do join me as I show you how to develop Mobile Apps with Kendo UI Mobile.

For more information on DEVCON, do visit the official website here: http://devcon14.k-mug.org/

If you are attending DEVCON, do bump into me and say hello. Just catch hold of me and lets discuss anything you would like to tell us.

I am excited for DEVCON. See you at DEVCON on Feb15.

Till next time – Happy Coding!

How to apply badge in Kendo UI Mobile Button

Learn more about Kendo UI Mobile here

Yes now you can have a default badge on Kendo UI Mobile Button. This was in demand feature and we brought this feature in Q1 2013 SP release.

You can put a badge by setting data-badge attribute of button. After setting badge button will look like below in various platforms.

image

Okay , so we can set badge property as follows. You need to set data-badge attribute.


<a data-role="button" data-badge = "10" data-click="AddFunction">Add</a>

You can access badge value with badge method. So if you need to read current badge value and print it in AddFunction JavaScript function then it can be done as follows.


function AddFunction()
{
 var badgeValue = parseInt(this.badge());

 alert(badgeValue);
}

We are reading badge value with badge() method. That returns a string value and before alerting that we are converting that to integer.

To write value of badge you need to pass a parameter in badge() method. So badge value can be written as below,


function AddFunction()
{
 var badgeValue = parseInt(this.badge());
 badgeValue++;
 this.badge(badgeValue);
 alert(badge);
}

You can remove badge from button by passing false to badge method. So you can remove badge as follows


function AddFunction()
{
 this.badge(false);
}

In this way you can work with badge in Kendo UI Mobile button. I hope you find this post useful. Thanks for reading.

Learn more about Kendo UI Mobile here

Resources for Webinar “Scaffolding in One Asp.Net”

On Jan 30, we conducted a webinar titled “Scaffolding in One Asp.Net”. This blog post is the recap of the webinar.

Scaffolding in ASP.NET:

ASP.NET Scaffolding is a code generation framework for ASP.NET Web applications. Visual Studio 2013 includes pre-installed code generators for MVC and Web API projects. You add scaffolding to your project when you want to quickly add code that interacts with data models. Using scaffolding can reduce the amount of time to develop standard data operations in your project.

So in this webinar I went about showcasing how scaffolding can be use in MVC scenario, Web API scenario and Web Forms scenario.

Slidedeck from webinar:

Here is the slide deck used in the webinar:


Webinar Video Recording:

Here is the video recording of the webinar:

.NET Ninja T-Shirt Giveaway:

As with every webinar we have done, we have selected 2 random persons from the audience and they will get our .NET Ninja T Shirts. Congratulations to the winners.

  • Rajesh Haramkar
  • Ramesh Pyru

Our office will contact you to get your postal address so that we can ship them to you.

Till next time – Happy Coding!