321 questions
0
votes
0
answers
43
views
How to Separate REST API URL and WebSocket URL in Webix Chat Widget?
I’m integrating the Webix Chat widget into my application, and I need to use a different URL for the initial REST API endpoint (config.url) than the one used for the WebSocket connection (websocket:...
0
votes
1
answer
64
views
webix.toExcel($$("dataTable")) is printing inaccurate numbers
I am trying to export a datatable as Excel Format using this command.
webix.toExcel($$("coretableCDC"), {
filterHTML: true
});
GUI - Excel
39E76 - 3.9E+77
39E78 - 3.9E+79
4E2FE - 4E2FE
...
0
votes
1
answer
128
views
Custom filter on Webix excelFilter
Please provide an example of how to create excelFilter filters based on the formatted text of a column, rather than the raw values. Currently, excelFilter filters based on the raw values, which ...
0
votes
1
answer
56
views
Webix: Using inner datalayout in Datalayout's Repeater Mode
I'm trying to diplay grouped list using Datalayout.
Data structure looks like:
Date 1
List item 1
List item 2
Date 2
List item 1
List item 2
I've found that Repeater mode of Datalayout is what I'm ...
0
votes
1
answer
47
views
how to add a N/A button inside the dateRangeFilter in the header of a webix dataTable that will filter out N/A values in that column?
`webix.ready(function(){
grid = webix.ui({
container:"tracker",
editaction:"click",
editable:true,
view:"datatable",
css:"...
0
votes
1
answer
188
views
webix postMessage on iframe never reaches embedded drawio
Basically, the backend provides me with the content of drawio files (so we are talking xml mode) and I need to display this in our webix page.
So far, I have tried to achieve this using an iframe, ...
0
votes
1
answer
58
views
WebIX Loading Icon Spin until method is completed
In Webix I have a method like this
function show_progress_icon(delay) {
$$("topView").disable();
$$("topView").showProgress({
type: "icon",
delay: delay,
...
1
vote
1
answer
65
views
js webix border box not fully visible
I have the following code which looks like this:
{id:'SetPopUp',view:'window',head:'',position:'center',move:true,body:
{rows:[
{height:7},
{height: 140, cols:[
{width:7},
{css: {...
1
vote
1
answer
125
views
Trying to change the Webix Jetpack layout dynamically
Hi I'm trying to build a dynamic user preference interface in Webix jetpack. When user click the layout change button I want to change the layout of the interface dynamically by making the views in in ...
0
votes
1
answer
267
views
Events are not loading into the webix scheduler calendar
I want to show events in webix scheduler UNIT view But events are not getting displayed on calendar. My url is fine and receiving a successful response from the server with the data I need for the ...
0
votes
1
answer
319
views
How can i use custom function in datatable footer? Webix, javascript
trying to learn datatable in webix.
An example of what I wanted to get in the column "example".
webix.ui.datafilter.mySummColumn = webix.extend({
refresh:function(master, node, value){
...
0
votes
1
answer
58
views
How to catch distant Webix ui.text resize so as to resize related ui.popup
In webix, one use of ui.popup is to act as a drop down list of suggestions for a ui.text.
Of course, in a responsive UI, the width of the text box can change and the width of the drop down suggestions ...
0
votes
0
answers
66
views
How can I do a table update in phpmyadmin from codeigniter using the webix javascript library (specifically scheduler.js)?
I understand that the connection is made from Codeigniter's database.php, there I have to set both username, password, db_name, etc.
On the other hand, we also have the Webix library, where the views, ...
0
votes
1
answer
82
views
How to parse obj variable into a .show() pop up in webix?
I have a code like this.
$$('TLVab').attachEvent("onAfterEditStop", function(state, editor, ignoreUpdate) {
$$('deleteLTMPopup').show();//TODO parse state into the pop up
});
...
0
votes
1
answer
238
views
webix Export toExcel customizing data
I tried this code in webix
webix.toExcel($$("datatableTab"), {
filename: "Data_Diff",
name: "Name"
});
and it dumped everything in my datatable (datatableTab)...