Search found 26 matches

by sedrok
Wed May 17, 2017 8:04 am
Forum: CrossUI for Web Apps
Topic: draggable SVG rect and xui 2.0a
Replies: 2
Views: 11230

Re: draggable SVG rect and xui 2.0a

working version // 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 ...
by sedrok
Tue May 16, 2017 3:27 pm
Forum: CrossUI for Web Apps
Topic: draggable SVG rect and xui 2.0a
Replies: 2
Views: 11230

draggable SVG rect and xui 2.0a

Why this code doesn't work with 2.0 ? but it works with 1.4 It must set new left and top position of the SVG rectangle // 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'...
by sedrok
Mon Dec 29, 2014 2:26 pm
Forum: Bug Report
Topic: adv-all.js not included in html after build
Replies: 2
Views: 12963

adv-all.js not included in html after build

RAD 1.30 1) setup phonegap to my account 2) Build -> Deploy 3) xui-all.js checked adv-all.js checked 4) build complete 5) download 6) view index.html in assets/www - adv-all.js not included in html after build in apk file as the result no advanced controls are added (for example - SVG) and applicati...
by sedrok
Sun Dec 21, 2014 4:40 pm
Forum: CrossUI for Web Apps
Topic: treeview select all checkboxes in group node
Replies: 0
Views: 11587

treeview select all checkboxes in group node

// The default code is a com class (inherited from xui.Com) Class('App', 'xui.Com',{ // Ensure that all the value of "key/value pair" does not refer to external variables Instance:{ // To determine whether or not the com will be destroyed, when the first UI control be destroyed autoDestroy : true, ...
by sedrok
Wed Dec 17, 2014 8:09 am
Forum: Applications Show
Topic: Yandex map heatmap, placemarks show from csv app
Replies: 2
Views: 12526

Re: Yandex map heatmap, placemarks show from csv app

file path

archive password : 1234
by sedrok
Tue Dec 16, 2014 10:21 pm
Forum: Applications Show
Topic: Yandex map heatmap, placemarks show from csv app
Replies: 2
Views: 12526

Yandex map heatmap, placemarks show from csv app

ready to lunch, just run C:\Apache\bin\trayhttpd.exe and open http://localhost:6776/app in your browser

complete application (archive password: 1234):
https://drive.google.com/open?id=0B1Vlo ... authuser=0
by sedrok
Tue Dec 16, 2014 10:10 pm
Forum: CrossUI for Web Apps
Topic: Multiple scripts called from main script
Replies: 3
Views: 9399

Re: Multiple scripts called from main script

i think
adv-all.js - must be included

<script type="text/javascript" src="runtime/xui/js/xui-all.js"></script>
<script type="text/javascript" src="runtime/xui/js/adv-all.js"></script>
by sedrok
Tue Dec 16, 2014 10:07 pm
Forum: CrossUI for Web Apps
Topic: display app in a dom container
Replies: 1
Views: 6530

Re: display app in a dom container

you can use <iframe>
or

as said in cookbook.pdf

2.2. Render onto a html node
<div id="grid"> </div>

panel.renderOnto('grid');
by sedrok
Mon Oct 13, 2014 10:39 am
Forum: CrossUI for Web Apps
Topic: Clear dialog or container from other controls
Replies: 0
Views: 10275

Clear dialog or container from other controls

dialog.getChildren().destroy();
container.getChildren().destroy();

another way:
dialog.setHtml('', true);