当前位置: 首页>>代码示例>>PHP>>正文


PHP TWebControl::onDataBinding方法代码示例

本文整理汇总了PHP中TWebControl::onDataBinding方法的典型用法代码示例。如果您正苦于以下问题:PHP TWebControl::onDataBinding方法的具体用法?PHP TWebControl::onDataBinding怎么用?PHP TWebControl::onDataBinding使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TWebControl的用法示例。


在下文中一共展示了TWebControl::onDataBinding方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: onDataBinding

 /**
  * This method is invoked when <b>OnDataBinding</b> event is raised.
  * 
  * Opens up the data source and creates all the TListItem controls
  * needed to render the data source.
  * 
  * @param TEventParameter event parameter
  */
 protected function onDataBinding($param)
 {
     parent::onDataBinding($param);
     if (is_null($this->dataSource)) {
         return;
     }
     // Reset all values.
     $this->items->clear();
     $textField = $this->getDataTextField();
     $valueField = $this->getDataValueField();
     foreach ($this->dataSource as $key => $val) {
         if ($val instanceof IListItemSource) {
             $text = $val->getItemText();
             $value = $val->getItemValue();
         } else {
             if (strlen($textField)) {
                 if (isset($val[$textField])) {
                     $text = $val[$textField];
                 } else {
                     throw new Exception('Invalid DataTextField property value');
                 }
             } else {
                 $text = $val;
             }
             if (strlen($valueField)) {
                 if (isset($val[$valueField])) {
                     $value = $val[$valueField];
                 } else {
                     throw new Exception('Invalid DataValueField property value');
                 }
             } else {
                 $value = $key;
             }
         }
         $item = new TListItem();
         $item->setText($text);
         $item->setValue("{$value}");
         $item->setSelected($this->SelectedValue == $value);
         $this->items->add($item);
     }
     $this->dataSource = null;
 }
开发者ID:joybinchen,项目名称:svnmanager-1.09,代码行数:50,代码来源:TListControl.php


注:本文中的TWebControl::onDataBinding方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。