摘要:Push Notifications With Cordova & Iceniumhttp://www.icenium.com/blog/icenium-team-blog/2013/04/17/push-notifications-with-cordova-icenium
阅读全文
摘要:应用场景采用 RadGrid 绑定 EntityDataSource,在 RadGrid 行内编辑,实现对数据库的更新。使用EntityDataSource 事件使用 EntityDataSource 的 Updating 事件,在这个事件通过 e.Entity 可获取修改后的数据对象,从而进行数据库的更新操作。优点:实现简单,节省代码。缺点:无法获取修改之前的旧数据,且无法得知修改了哪些数据。使用 RadGrid 事件使用 RadGrid 的 UpdateCommand 事件。获取被编辑项目:GridEditableItem item = e.Item as GridEditableItem
阅读全文
摘要:使用 RadTreeView 时,可以通过输入文字来搜索并显示符合条件的树节点,而搜索的目标则是来自数据源,即给 RadTreeView 的 ItemsSource 属性赋的值。具体的搜索目标可以通过两种方式来指定:重写数据源元素的 ToString() 方法,定义如下:public class MyData(){ public string Path { get; set; } public override string ToString() {// 这里的 Path 可以替换为其他属性 return this.Path; }}在 RadTreeView 标签中设置 telerik:Tex
阅读全文
摘要:问题现象通过按钮 Command 来操作 RadGridView 无效例如:<telerik:RadButton Command="telerikGrid:RadGridViewCommands.BeginInsert" CommandTarget="{Binding ElementName=_GridView}"...解决方法把 <telerik:RadGridView... 标记写在 <telerik:RadButton... 标记之前。
阅读全文
摘要:官方网站提供的教程通用的本地化步骤如何制作资源文件,项目中如何设置可用 Culture 等。RadGridView 本地化步骤RadGridView 控件的资源字符串列表,相关本地化代码等。附录各国 Culture 名称列表
阅读全文