Foxtable(狐表)用户栏目专家坐堂 → 求助:自动增加Grid(网格按钮


  共有2240人关注过本帖树形打印复制链接

主题:求助:自动增加Grid(网格按钮

帅哥哟,离线,有人找我吗?
yifan3429
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:九尾狐 帖子:2482 积分:22932 威望:0 精华:0 注册:2011/3/29 17:14:00
求助:自动增加Grid(网格按钮  发帖心情 Post By:2018/3/9 23:09:00 [只看该作者]

Case "test.htm"
        
Dim wb As New WeUI
        wb.AddPageTitle("","pageheader","WeUI",
"
微信网页设计样式库")
        With wb.AddGrid("","g1")
.Add("c3","Toast", "./images/toast.png", "http://www.foxtable.com")
通过历史案例表
对应

c3  序号列
Toast 名称
./images/toast.png 图标
http://www.foxtable.com 链接

根据表的行  自动增加Grid(网格按钮

不想下面的需要一个个的增加

            .Add("c1","Button""./images/button.png").Attribute = 
""
            .Add("c2","Cell""./images/cell.png""http://www.foxtable.com")
            .Add("c3","Toast""./images/toast.png""http://www.foxtable.com")
            .Add("c4","Dialog""./images/dialog.png""http://www.foxtable.com")
            .Add("c5","Progress""./images/progress.png""http://www.foxtable.com")
            .Add("c6","Msg""./images/msg.png""http://www.foxtable.com")
            .Add("c7","Article""./images/article.png""http://www.foxtable.com")
            .Add("c8","ActionSheet""./images/actionSheet.png""http://www.foxtable.com")
            .Add("c9","Icons""./images/icons.png""http://www.foxtable.com")
            .Add("c10","Panel""./images/panel.png""http://www.foxtable.com")
            .Add("c11","Tab""./images/tab.png""http://www.foxtable.com")
            .Add("c12","SearchBar""./images/search.png""http://www.foxtable.com")

        End With
        e.WriteString(wb.Build)

End
 Select

 回到顶部
帅哥,在线噢!
有点蓝
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110795 积分:563913 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2018/3/9 23:20:00 [只看该作者]

for each dr as datarow in datatables("表A")
    .Add(dr("名称"),dr("标题")dr("图标"dr("链接"))
next

 回到顶部
帅哥哟,离线,有人找我吗?
yifan3429
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:九尾狐 帖子:2482 积分:22932 威望:0 精华:0 注册:2011/3/29 17:14:00
  发帖心情 Post By:2018/3/10 12:13:00 [只看该作者]

Dim e As RequestEventArgs = args(0)
Dim wb As New WeUI '定义一个基于weui框架的网页生成器
Select Case e.Path
    Case "mzal.htm"
        Dim bm As String
        Dim gw As String
        Dim name As String
        Dim userid = Functions.Execute("验证函数",e,"mzal.htm")
        If userid > "" Then
            wb.AppendCookie("userid",userid) '将用户名和密码写入cookie
            Dim wxdr As DataRow =  DataTables("users").SQLFind("userid='" & userid & "'")
            If wxdr IsNot Nothing Then
                gw =  wxdr("position")
                name = wxdr("name")
                Dim wxdr1 As DataRow = DataTables("departments").SQLFind("id='" & wxdr("department") & "'")
                If wxdr1 IsNot Nothing Then
                    bm= wxdr1("name")
                End If
                
                'e.WriteString(name & userid & "USERID获取成功" & gw & bm)
                '------------------------------------------------------------------------------------------------------------------------------
                
                wb.AddPageTitle("","pageheader100","IDIR","艾迪尔国际家居")
                wb.AddPageTitle("","pageheader1","","日常工作")
                With wb.AddGrid("","g1")
                    For Each dr As DataRow In datatables("网页表")
                        .Add(dr("名称"),dr("标题"), dr("图标", dr("网页链接"))
                    Next
                End With
                '-----------------------------------------------------------------------------------
            End If
        End If
End Select




---------------------------
错误
---------------------------
编译错误:表达式的类型为“DataTable”,该类型不是集合类型。



错误代码:For Each dr As DataRow In datatables("网页表")
---------------------------
确定   
---------------------------


 回到顶部
帅哥,在线噢!
有点蓝
  4楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110795 积分:563913 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2018/3/10 14:19:00 [只看该作者]

一些基本的错误应该会自己判断吧

For Each dr As DataRow In datatables("网页表").datarows
     .Add(dr("名称"),dr("标题"), dr("图标"), dr("网页链接"))
Next

 回到顶部
帅哥哟,离线,有人找我吗?
yifan3429
  5楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:九尾狐 帖子:2482 积分:22932 威望:0 精华:0 注册:2011/3/29 17:14:00
  发帖心情 Post By:2018/3/10 18:51:00 [只看该作者]

老师 我想根据网页表的 版面列  来筛选  轻奢系列 行 生成当前页面
还需要请教

Dim e As RequestEventArgs = args(0)
Dim wb As New WeUI '定义一个基于weui框架的网页生成器
Select Case e.Path
    Case "qsxl.htm"
        Dim bm As String
        Dim gw As String
        Dim name As String
        Dim userid = Functions.Execute("验证函数",e,"qsxl.htm")
        If userid > "" Then
            wb.AppendCookie("userid",userid) '将用户名和密码写入cookie
            Dim wxdr As DataRow =  DataTables("users").SQLFind("userid='" & userid & "'")
            If wxdr IsNot Nothing Then
                gw =  wxdr("position")
                name = wxdr("name")
                Dim wxdr1 As DataRow = DataTables("departments").SQLFind("id='" & wxdr("department") & "'")
                If wxdr1 IsNot Nothing Then
                    bm= wxdr1("name")
                End If
                
                'e.WriteString(name & userid & "USERID获取成功" & gw & bm)
                ''------------------------------------------------------------------------------------------------------------------------------
                wb.AddPageTitle("","pageheader100","艾迪尔木作","轻奢产品目录")
                With wb.AddGrid("","g1")
                    For Each dr As DataRow In DataTables("网页表").datarows
                        For Each dr As DataRow
                            If dr("版面") = "轻奢系列"
                                .Add(dr("名称"),dr("标题"), dr("图标"), dr("网页链接"))
                            End If
                        Next
                    Next                         
                    'For Each dr As DataRow In DataTables("网页表").datarows
                    '.Add(dr("名称"),dr("标题"), dr("图标"), dr("网页链接"))
                    'Next
                End With
                e.WriteString(wb.Build)
                '-----------------------------------------------------------------------------------
            End If
        End If
End Select
[此贴子已经被作者于2018/3/10 19:02:32编辑过]

 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  6楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/3/11 21:25:00 [只看该作者]

For Each dr As DataRow In DataTables("网页表").Select("版面 = '轻奢系列'")
    .Add(dr("名称"),dr("标题"), dr("图标"), dr("网页链接"))
Next

 回到顶部