Search found 356 matches
- Fri Feb 07, 2020 3:45 am
- Forum: CrossUI for Web Apps
- Topic: Filter grid rows by column list
- Replies: 0
- Views: 17661
Filter grid rows by column list
Q: Is there an option with TreeGrid tables that when you click on the column header it will display the list of unique entries in that column? This is similar to Excel which will quickly show the options in that column. A: This is a demo for a column with editorListItems: xui.Class('App', 'xui.Modul...
- Thu Jan 23, 2020 11:46 am
- Forum: CrossUI for Web Apps
- Topic: Menu Bar Behavior
- Replies: 6
- Views: 12715
Re: Menu Bar Behavior
Then you have to use the hidden functin _pop: xui.Class('App', 'xui.Module',{ Instance:{ iniComponents : function(){ // [[Code created by CrossUI RAD Studio var host=this, children=[], append=function(child){children.push(child.get(0));}; append( xui.create("xui.UI.MenuBar") .setHost(host,"xui_ui_me...
- Thu Jan 23, 2020 2:13 am
- Forum: CrossUI for Web Apps
- Topic: Menu Bar Behavior
- Replies: 6
- Views: 12715
Re: Menu Bar Behavior
When set autoShowTime to zero, menu will not pop up automatically, that means you can click it to pop. Try it. xui.Class('App', 'xui.Module',{ Instance:{ iniComponents : function(){ // [[Code created by CrossUI RAD Studio var host=this, children=[], append=function(child){children.push(child.get(0))...
- Wed Jan 22, 2020 3:50 am
- Forum: CrossUI for Web Apps
- Topic: Menu Bar Behavior
- Replies: 6
- Views: 12715
Re: Menu Bar Behavior
There's an autoShowTime property, you can set it to zero.
javascript code
javascript code
xxMenu .setAutoShowTime(0)
- Tue Aug 20, 2019 12:55 am
- Forum: Bug Report
- Topic: Licence Key not saved
- Replies: 4
- Views: 22892
Re: Licence Key not saved
If you use a windows system, check your folder permissions. You should add Administrators permission to the CrossUI folder.
- Mon Mar 11, 2019 6:05 pm
- Forum: CrossUI Code Snaps
- Topic: Use code in the third part scripts
- Replies: 0
- Views: 19811
Use code in the third part scripts
Suppose you have a script like this ( in ThirdPart/scripts/myscript.js ): // An unique namespace is important MyScript={}; MyScript.User = function(name){ this.name = name || "No Name"; }; MyScript.User.prototype.sayHi = function (msg){ alert("To " + this.name + ": " + (msg||"Hi") ); }; You can incl...
- Tue Apr 24, 2018 9:06 am
- Forum: Tutorials
- Topic: Basic - Calling JS Functions
- Replies: 0
- Views: 20726
Basic - Calling JS Functions
Objectives: to learn hwo to use simple javascript function in CrossUI
Download the source code
Online demo
Download the source code
Online demo
- Thu Apr 12, 2018 9:25 am
- Forum: Tutorials
- Topic: Intermediate - Excel-like Formula
- Replies: 0
- Views: 13207
Intermediate - Excel-like Formula
Objectives: to learn how to do simple automatic calculation in CrossUI
Download the source code
Online demo
Download the source code
Online demo
- Sun Apr 08, 2018 4:13 am
- Forum: Tutorials
- Topic: Basic - Hello World
- Replies: 0
- Views: 13057
- Sat Mar 03, 2018 10:22 am
- Forum: CrossUI for Web Apps
- Topic: how to implement a simple function which adds two values
- Replies: 0
- Views: 12745
how to implement a simple function which adds two values
xui.Class('App', 'xui.Module',{ Instance:{ iniComponents : function(){ // [[Code created by CrossUI RAD Studio var host=this, children=[], append=function(child){children.push(child.get(0));}; append( xui.create("xui.UI.SVGPaper") .setHost(host,"xui_ui_svgpaper1") .setLeft("15.833333333333334em") ....