以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  [求助]移动开发addinputcell问题  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=108315)

--  作者:yjh2002
--  发布时间:2017/10/20 9:37:00
--  [求助]移动开发addinputcell问题
做的后台用了addinputcell,计划是三列显示,左中右,左为标签,中和右为输入框。但只显示结果只显示左和中,右边的不显示,是什么原因?
代码如下:
            With wb.AddInputGroup("form1","ipg1","计划")
                With .AddInputCell("ic1") \'通过InputCell增加输入框
                    .AddLabel("ls1","企业所得税",0) \'增加标签,0显示在左边
                    With .AddInput("nsby1","number",1)
                        .PlaceHolder= "本月预计"  \'增加输入框,1表示显示在中间
                        .Step = "0.01" 
                    End With 
                    .AddInput("nssn1","number",2).PlaceHolder= "上年同期"  \'增加输入框
                End With


--  作者:有点甜
--  发布时间:2017/10/20 9:40:00
--  

 weui不支持你这样布局。

 

 除非你用原生的html标签去做 http://www.foxtable.com/mobilehelp/scr/0097.htm

 


--  作者:yjh2002
--  发布时间:2017/10/20 9:47:00
--  
谢谢您