Strength of Canvas in WPF Get link Facebook X Pinterest Email Other Apps April 27, 2017 - Allow to display 3D by ZIndex property. - Easy to place elements by Canvas.Top, Bottom, Left, and Right properties. - Support to draw shape like Eclipse, Rectangle. Read more
C#: TimeSpan ToString Format Get link Facebook X Pinterest Email Other Apps April 26, 2017 myTimeSpan . ToString ( "d'day 'h'hour 'm'min 's'sec'" ); Read more
Razor: Convert Dictionary from Server to Javascript Dictionary Get link Facebook X Pinterest Email Other Apps April 20, 2017 @model IEnumerable <HD.TVAD.Features.TimePeriod.SponsorProgram.Models. SponsorProgramViewModel > @{ Dictionary < string , Guid > dicProgram = new Dictionary < string , Guid >(); foreach ( var temp in Model) { dicProgram.Add(temp.Name, ( Guid )temp.Id); } } <script> var sponsorProgramDic = {}; sponsorProgramDic = @ Json.Serialize(dicProgram); </script> Read more
Reloading/refreshing Kendo Grid Get link Facebook X Pinterest Email Other Apps April 19, 2017 $('#GridName').data('kendoGrid').dataSource.read(); $('#GridName').data('kendoGrid').refresh(); Read more
KendoUI grid edit popup, how to hide field Get link Facebook X Pinterest Email Other Apps April 18, 2017 To hide a filed simply add this to the view model: [ScaffoldColumn(false)] Read more
Javascript: Get ID of clicked-item Get link Facebook X Pinterest Email Other Apps April 18, 2017 <!DOCTYPE html> <head> <title> It works </title> </head> <body> <div id = "div1" ></div> <div id = "div2" ></div> <script type = "text/javascript" > document . addEventListener ( 'click' , function ( e ) { alert ( e . target . id ); }, false ); </script> </body> </html> Read more
Kendo Grid - Get ID of right-clicked item Get link Facebook X Pinterest Email Other Apps April 13, 2017 Read more