本文整理汇总了Python中pyasm.web.WebContainer.add_js方法的典型用法代码示例。如果您正苦于以下问题:Python WebContainer.add_js方法的具体用法?Python WebContainer.add_js怎么用?Python WebContainer.add_js使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyasm.web.WebContainer
的用法示例。
在下文中一共展示了WebContainer.add_js方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: handle_tab
# 需要导入模块: from pyasm.web import WebContainer [as 别名]
# 或者: from pyasm.web.WebContainer import add_js [as 别名]
def handle_tab(self, tab):
# Hide this for now
#tab.add( self.get_create_wdg, "Create")
#tab.add( self.get_edit_wdg, "Edit" )
tab.add( LoginWdg, _("Users") )
tab.add( LoginGroupWdg, _("Groups") )
tab.add( self.get_user_group_wdg, _("Users -> Groups"))
tab.add( self.get_group_user_wdg, _("Groups -> Users") )
tab.add( QueueWdg, _("Queue") )
tab.add( self.get_render_policy_wdg, _("Render Policy") )
#tab.add( PipelineEditorWdg, _("Pipelines") )
tab.add( self.get_pipeline_wdg, _("Pipelines") )
tab.add( self.get_group_notification_wdg, _("Notification -> Group") )
tab.add( self.get_notification_group_wdg, _("Group -> Notification" ) )
tab.add( self.get_milestone_wdg, _("Project Milestones") )
tab.add( self.get_project_settings_wdg, _("Project Settings") )
tab.add( CustomProjectTabWdg, _("Customize Project") )
from setup_tab_wdg import SetupTabWdg
tab.add( SetupTabWdg, _("Setup Wizard"))
tab.add(self.get_import_wdg, _("Import Data") )
WebContainer.add_js('wz_dragdrop.js')
示例2: init
# 需要导入模块: from pyasm.web import WebContainer [as 别名]
# 或者: from pyasm.web.WebContainer import add_js [as 别名]
def init(my):
help = HelpItemWdg('Loader', 'The Loader lets you load 3D assets into your 3D applications. Among many options, you can choose to either reference, import, or open the asset through http or the internal file system.')
my.add(help)
pref = PrefSetting.get_value_by_key("use_java_maya")
app = WebContainer.get_web().get_app_name_by_uri()
if app == "Maya":
if not Container.get('GeneralAppletWdg'):
my.add( GeneralAppletWdg() )
Container.put('GeneralAppletWdg', True)
site_menu = SiteMenuWdg()
site_menu.add_style("float", "right")
site_menu.add_style("margin-top", "-2px")
my.add(site_menu)
WebContainer.add_js('MayaWebTools.js')
WebContainer.add_js('PyMaya.js')
tab = MayaTabWdgImpl()
tab_value = tab.set_tab_key("maya_tab")
#my.handle_tab(tab)
#my.add(tab,"tab")
my.setup_tab("maya_tab", tab=tab)
my.add( ProgressWdg() )