Search found 11 matches
- Fri Aug 30, 2024 5:40 pm
- Forum: Basic Issues
- Topic: Please fix links to these demos
- Replies: 1
- Views: 50066
Re: Please fix links to these demos
Fixed those, pls check it out.
- Fri Aug 30, 2024 12:55 pm
- Forum: Basic Issues
- Topic: Inconsistencies on line verses local version.
- Replies: 1
- Views: 60773
Re: Inconsistencies on line verses local version.
The error is "net::ERR_CERT_AUTHORITY_INVALID", which means that the JSON file cannot be read across domain.
When you use desktop version, the app will read it from local machine (The server where your JSON file is located does not consider it a cross-domain access.).
When you use desktop version, the app will read it from local machine (The server where your JSON file is located does not consider it a cross-domain access.).
- Fri Aug 30, 2024 12:50 pm
- Forum: Basic Issues
- Topic: Changing xui.UI.ComboInput LabelCaption
- Replies: 1
- Views: 43331
Re: Changing xui.UI.ComboInput LabelCaption
Did you try 'setLabelCaption' function?
- Wed Jul 17, 2024 3:56 pm
- Forum: Tips and Tricks
- Topic: Request for tip
- Replies: 3
- Views: 50554
Re: Request for tip
Hi, I added an event for the dblclick:
_treegrid1_ondblclickrow:function(profile, row, e, src){
xui.Dom.submit("https://google.com", {"q":row.cells[0].value}, "GET", "_blank");
}
Once you dlblick a row, it will open a new tab, the first cell value will be in the search box in google.com ...
_treegrid1_ondblclickrow:function(profile, row, e, src){
xui.Dom.submit("https://google.com", {"q":row.cells[0].value}, "GET", "_blank");
}
Once you dlblick a row, it will open a new tab, the first cell value will be in the search box in google.com ...
- Fri Apr 26, 2024 8:49 pm
- Forum: Basic Issues
- Topic: How to integrate TinyMCE into my UI?
- Replies: 0
- Views: 51382
How to integrate TinyMCE into my UI?
xui.Class('App', 'xui.Module',{
Instance:{
// Dependency CSS
Dependencies:[],
// Required js
Required:["//cdnjs.cloudflare.com/ajax/libs/tinymce/6.1.0/tinymce.min.js"],
// To initialize properties
properties : {},
// To initialize instance(e.g. properties)
initialize : function ...
Instance:{
// Dependency CSS
Dependencies:[],
// Required js
Required:["//cdnjs.cloudflare.com/ajax/libs/tinymce/6.1.0/tinymce.min.js"],
// To initialize properties
properties : {},
// To initialize instance(e.g. properties)
initialize : function ...
- Wed Mar 06, 2024 9:20 pm
- Forum: Builder/Designer Features Wanted
- Topic: window behavior stretching cell phone
- Replies: 3
- Views: 66257
Re: window behavior stretching cell phone
I noticed that you have 5 tabs, but hide all tabs except the first one, and you set "value" to 5th(hidden).
.setItems([
{
"id" : "a",
"caption" : "Wanker Bell",
"imageClass" : "xui-icon-xui",
"closeBtn" : false
},
{
"id" : "b",
"caption" : "Hosted Sites",
"closeBtn" : false,
// HIDDEN ...
.setItems([
{
"id" : "a",
"caption" : "Wanker Bell",
"imageClass" : "xui-icon-xui",
"closeBtn" : false
},
{
"id" : "b",
"caption" : "Hosted Sites",
"closeBtn" : false,
// HIDDEN ...
- Thu Feb 15, 2024 6:43 pm
- Forum: Announcement
- Topic: 2.52 - New versions released!
- Replies: 0
- Views: 39935
2.52 - New versions released!
- Thu Feb 15, 2024 4:50 pm
- Forum: Builder/Designer Features Wanted
- Topic: [ADDED in 2.52]Issue with CTRL+X/C/V/Z/Y Keyboard Shortcuts in CrossUI on Windows
- Replies: 3
- Views: 78517
Re: Issue with CTRL+X/C/V/Z Keyboard Shortcuts in CrossUI on Windows
Will add CTRL+X/C/V/Z/Y in the next minor release
- Thu Feb 08, 2024 4:48 pm
- Forum: Builder/Designer Features Wanted
- Topic: [ADDED in 2.52]Issue with CTRL+X/C/V/Z/Y Keyboard Shortcuts in CrossUI on Windows
- Replies: 3
- Views: 78517
Re: Issue with CTRL+X/C/V/Z Keyboard Shortcuts in CrossUI on Windows
CTRL+X/C/V/Z works in the code view but does not work for the design view. Do you mean using CTRL+X/C/V/Z to cut/copy a control, CTRL+Z/Y to undo/redo?
- Tue Jan 30, 2024 4:47 pm
- Forum: Basic Issues
- Topic: CrossUI SPA Code Demo
- Replies: 0
- Views: 43088
CrossUI SPA Code Demo
// The default code is a module class (inherited from xui.Module)
// Ensure that all the value of "key/value pair" does not refer to external variables
xui.Class('App', 'xui.Module',{
Instance:{
// Dependency classes
Dependencies:[],
// Required modules
Required:[],
// To initialize ...