zoukankan
html css js c++ java
DataCogsFieldControls 有时保存不上的问题
public
void
InitializeWithField(SPField field)
{
if
(
!
IsPostBack)
{
ChildDropDownListField ChildField
=
field
as
ChildDropDownListField;
if
(ChildField
!=
null
)
{
childSiteUrl
=
ChildField.ChildSiteUrl;
childListName
=
ChildField.ChildListName;
childListTextField
=
ChildField.ChildListTextField;
childListValueField
=
ChildField.ChildListValueField;
childJoinField
=
ChildField.ChildJoinField;
EnsureChildControls();
if
(
string
.IsNullOrEmpty(txtSiteURL.Text)
&&
!
string
.IsNullOrEmpty(childSiteUrl))
{
txtSiteURL.Text
=
childSiteUrl;
loadLists();
ddlLists.Items.FindByText(childListName).Selected
=
true
;
refreshLookups();
ddlColumnText.Items.FindByText(childListTextField).Selected
=
true
;
ddlColumnValue.Items.FindByText(childListValueField).Selected
=
true
;
ddlColumnJoin.Items.FindByText(childJoinField).Selected
=
true
;
}
}
}
}
查看全文
相关阅读:
【leetcode】9. Palindrome Number
【leetcode】7. Reverse Integer
【Leetcode】6. ZigZag Conversion
Mysql读写分离
Windows下为PHP安装redis扩展
jquery 写的图片左右连续滚动
PHP中spl_autoload_register函数的用法
MySQL命令行查询乱码解决方法:
AJAX 教程
Mac安装composer爬过的坑
原文地址:https://www.cnblogs.com/chenfulai/p/1183407.html
最新文章
Python与设计模式--工厂模式
Android中使用ps命令查看进程PID
Android中UID和PID的作用和区别
CSS书写规范、顺序
深入理解webpack打包机制
es6面试题--Promise相关
angular2 Router类中的路由跳转navigate
前端移动端适配总结
CSS 预处理器
grid栅格布局
热门文章
Angular2-管道
Running Protractor Tests on Docker
前端测试
【leetcode】10.Regular Expression Matching
常用字符串与集合类转换的工具类
生成随机字符串(UUID方法)
生成随机字符串的工具类
对象序列化工具类
【Leetcode】357. Count Numbers with Unique Digits
【Leetcode】355. Design Twitter
Copyright © 2011-2022 走看看